2024-01-22 11:58:24 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-01-23 17:06:47 +08:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-01-22 11:58:24 +08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-01-22 15:08:43 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="config.cfg" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Page Include="config.cfg" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-01-22 11:58:24 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\NoSugarNet.ServerCore\NoSugarNet.ServerCore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|