37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
<TargetFramework>net462</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<LangVersion>12.0</LangVersion>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
<Version>1.1.1</Version>
|
|||
|
|
<ApplicationIcon>Resources\SyminUI.ico</ApplicationIcon>
|
|||
|
|
<PackageVersion>1.1.1</PackageVersion>
|
|||
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Resources\Images\ImageTest.png" />
|
|||
|
|
<None Remove="Resources\Images\SyminUI.png" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Include="Resources\Images\ImageTest.png">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
<Content Include="Resources\Images\SyminUI.png">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
<Content Include="Resources\SyminUI.ico">
|
|||
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\SyminUI\SyminUI.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|