45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Assets\Fonts\SourceHanSansCN-Bold.ttf" />
|
|||
|
|
<None Remove="Assets\Fonts\SourceHanSansCN-Regular.ttf" />
|
|||
|
|
<None Remove="Assets\Fonts\方正楷体简体.ttf" />
|
|||
|
|
<None Remove="Assets\Images\Logo.ico" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Folder Include="Controls\" />
|
|||
|
|
<Folder Include="DataAccess\" />
|
|||
|
|
<Folder Include="Views\" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="LiveCharts.Wpf" Version="0.9.7" />
|
|||
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.178" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Resource Include="Assets\Fonts\SourceHanSansCN-Bold.ttf">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
<Resource Include="Assets\Fonts\SourceHanSansCN-Regular.ttf">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
<Resource Include="Assets\Fonts\方正楷体简体.ttf">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
<Resource Include="Assets\Images\Logo.ico">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</Resource>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|