Files
netch/UnitTest/UnitTest.csproj
2021-03-01 16:39:11 +08:00

33 lines
1000 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<Platforms>x64</Platforms>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Netch\Netch.csproj"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<!-- NET Framework -->
<Reference Include="System.Windows.Forms"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1"/>
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2"/>
<PackageReference Include="MSTest.TestFramework" Version="2.1.2"/>
<PackageReference Include="System.Text.Json" Version="5.0.1"/>
</ItemGroup>
</Project>