Topuino_Client_Windows/Topuino_Client_Windows.csproj

27 lines
789 B
XML
Raw Normal View History

2022-06-10 18:51:48 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
2022-06-14 16:40:40 +08:00
<UseWindowsForms>true</UseWindowsForms>
2022-06-14 20:43:29 +08:00
<ApplicationIcon>Topuino.ico</ApplicationIcon>
2022-06-30 10:22:12 +08:00
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2022-06-10 18:51:48 +08:00
</PropertyGroup>
2022-06-14 20:43:29 +08:00
<ItemGroup>
<Content Include="Topuino.ico" />
</ItemGroup>
2022-06-10 18:51:48 +08:00
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
2022-06-30 10:22:12 +08:00
<PackageReference Include="System.IO.Ports" Version="6.0.0" />
2022-06-10 18:51:48 +08:00
</ItemGroup>
2022-06-14 16:40:40 +08:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(ProjectDir)Topuino.ico&quot; &quot;$(ProjectDir)$(OutDir)&quot; /y /f" />
</Target>
2022-06-10 18:51:48 +08:00
</Project>