43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Deterministic>true</Deterministic>
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
<Configurations>Debug;Release;Shipping</Configurations>
|
|
<NoWarn>8600,8602,8603,8604</NoWarn>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>$(DefineConstants);SEQUENCE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>$(DefineConstants);SEQUENCE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Shipping|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>$(DefineConstants);SEQUENCE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Tools\ControlCenter\ControlCenter.NamedPipeHost\ControlCenter.NamedPipeHost.csproj" />
|
|
<ProjectReference Include="..\Protocol\Protocol.csproj" />
|
|
<ProjectReference Include="..\ServerBase\ServerBase.csproj" />
|
|
<ProjectReference Include="..\ServerCommon\ServerCommon.csproj" />
|
|
<ProjectReference Include="..\ServerCore\ServerCore.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog.Extensions.Logging" />
|
|
<PackageReference Include="OneOf" />
|
|
<PackageReference Include="RedLock.net" />
|
|
<PackageReference Include="Ulid" />
|
|
</ItemGroup>
|
|
</Project>
|