39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net6.0;net48</TargetFrameworks>
|
|
<LangVersion>10</LangVersion>
|
|
<ImplicitUsings>false</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<DebugType>portable</DebugType>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
|
<RootNamespace>DTLib.Tests</RootNamespace>
|
|
<Configurations>Debug;Release;Release-net48</Configurations>
|
|
<Platforms>AnyCPU</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>
|
|
<ProjectReference Include="..\DTLib.Network\DTLib.Network.csproj" />
|
|
<ProjectReference Include="..\DTLib.Dtsod\DTLib.Dtsod.csproj" />
|
|
<ProjectReference Include="..\DTLib\DTLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="DtsodV2X\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="DtsodV30\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|