mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-11-29 18:38:30 +08:00
18 lines
546 B
XML
18 lines
546 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWPF>true</UseWPF>
|
|
<Copyright>Copyright © $username$ $year$</Copyright>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="HandyControl" Version="3.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|