mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
33 lines
1007 B
XML
33 lines
1007 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.2.1" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.1" />
|
|
<PackageReference Include="System.Text.Json" Version="5.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|