Files
caliverse_server/ServerCommon/ServerCommon.csproj
2025-11-28 16:54:56 +09:00

55 lines
2.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Configurations>Debug;Release;Shipping</Configurations>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn />
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DefineConstants>$(DefineConstants);</DefineConstants>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>full</DebugType>
<DefineConstants>$(DefineConstants);</DefineConstants>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Shipping|AnyCPU'">
<DebugType>full</DebugType>
<DefineConstants>$(DefineConstants);</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Monitor\**" />
<Compile Remove="Network\**" />
<EmbeddedResource Remove="Monitor\**" />
<EmbeddedResource Remove="Network\**" />
<None Remove="Monitor\**" />
<None Remove="Network\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Protocol\Protocol.csproj" />
<ProjectReference Include="..\ServerCore\ServerCore.csproj" />
<ProjectReference Include="..\ServerBase\ServerBase.csproj" />
<ProjectReference Include="..\..\Tools\ControlCenter\ControlCenter.NamedPipe\ControlCenter.NamedPipe.csproj" />
<ProjectReference Include="..\UGQDatabase\UGQDatabase.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="ProudDotNetClient">
<HintPath>..\..\ThirdPartyPackages\ProudNet\1.9.58941\ProudNet\lib\DotNet\ProudDotNetClient.dll</HintPath>
</Reference>
<Reference Include="ProudDotNetServer">
<HintPath>..\..\ThirdPartyPackages\ProudNet\1.9.58941\ProudNet\lib\DotNet\ProudDotNetServer.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ulid" />
</ItemGroup>
</Project>