2025-03-19 18:16:39 +08:00

28 lines
870 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>../../Bin/Debug/</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>../../Bin/Release/</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fantasy-Net.NLog" Version="2024.1.20" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\APlugins\APlugins.csproj" />
<ProjectReference Include="..\Entity\Entity.csproj" />
<ProjectReference Include="..\Hotfix\Hotfix.csproj" />
</ItemGroup>
</Project>