30 lines
863 B
XML
30 lines
863 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Library</OutputType>
|
|||
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Assets\Fonts\iconfont.ttf" />
|
|||
|
|
<None Remove="Assets\Images\Enlarge.png" />
|
|||
|
|
<None Remove="Assets\Images\Narrow.png" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Resource Include="Assets\Fonts\iconfont.ttf">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
<Resource Include="Assets\Images\Enlarge.png">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
<Resource Include="Assets\Images\Narrow.png">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|