2025-02-10 20:53:40 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFrameworks>net472;<!--net8.0-windows--></TargetFrameworks>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<NoWarn>CS0108;CS8601;CS4014;CS8602</NoWarn>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-04-24 20:56:44 +08:00
|
|
|
|
<!--<PlatformTarget>x64</PlatformTarget>-->
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
|
|
|
|
</PropertyGroup>
|
2025-07-11 09:20:23 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="Resources\Fonts\Segoe Fluent Icons.ttf" />
|
|
|
|
|
|
</ItemGroup>
|
2025-05-05 17:04:06 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="Controls\Button\Button.cs" />
|
|
|
|
|
|
</ItemGroup>
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="PolySharp" Version="1.15.0" />
|
|
|
|
|
|
</ItemGroup>
|
2025-07-11 09:20:23 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Resource Include="Resources\Fonts\FluentSystemIcons-Filled.ttf" />
|
|
|
|
|
|
<Resource Include="Resources\Fonts\FluentSystemIcons-Regular.ttf" />
|
|
|
|
|
|
<Resource Include="Resources\Fonts\Segoe Fluent Icons.ttf" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<!-- <ItemGroup>
|
|
|
|
|
|
<Page Update="Properties\DesignTimeResources.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<ContainsDesignTimeResources>true</ContainsDesignTimeResources>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
</ItemGroup>-->
|
2025-02-10 20:53:40 +08:00
|
|
|
|
</Project>
|