22 lines
831 B
XML
22 lines
831 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
<Version>0.0.1</Version>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="AntdUI" Version="2.3.9" />
|
|
<PackageReference Include="FontAwesome.Sharp" Version="6.6.0" />
|
|
<PackageReference Include="System.Management" Version="10.0.6" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="assets\imgs\**\*.*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project> |