25 lines
712 B
XML
25 lines
712 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<UseWPF>true</UseWPF>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GitRepositoryConfigurationScope>local</GitRepositoryConfigurationScope>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AntdUI" Version="2.3.10" />
|
|
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="antdui-demo\**\*.cs" />
|
|
<EmbeddedResource Remove="antdui-demo\**\*" />
|
|
<None Remove="antdui-demo\**\*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|