29 lines
911 B
XML
29 lines
911 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Gazillion\Gazillion.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Free.Ports.zLib">
|
|
<HintPath>..\..\dep\Free.Ports.zLib\Free.Ports.zLib.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Google.ProtocolBuffers">
|
|
<HintPath>..\..\dep\protobuf-csharp\Google.ProtocolBuffers.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="INIFileParser">
|
|
<HintPath>..\..\dep\ini-parser\INIFileParser.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="K4os.Compression.LZ4">
|
|
<HintPath>..\..\dep\K4os.Compression.LZ4\K4os.Compression.LZ4.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|