31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<DebugType>portable</DebugType>
|
|
<AssemblyName>DTLib</AssemblyName>
|
|
<!--xxhash uses arithmetic overflow-->
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU;x64;x86;arm64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
|
|
<Reference Include="System.Net" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Dynamic" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
|
<Compile Remove="Experimental\**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Experimental\ConsoleGUI\**" />
|
|
</ItemGroup>
|
|
</Project>
|