초기커밋
This commit is contained in:
80
Protocol/Protocol.csproj
Normal file
80
Protocol/Protocol.csproj
Normal file
@@ -0,0 +1,80 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<UserSecretsId>54783c90-d68f-44ae-9706-9bb7f7654d7d</UserSecretsId>
|
||||
<Configurations>Debug;Release;Shipping</Configurations>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>8600,8602,8603</NoWarn>
|
||||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebugType>full</DebugType>
|
||||
<DefineConstants>$(DefineConstants);</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<DebugType>full</DebugType>
|
||||
<DefineConstants>$(DefineConstants);</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Shipping|AnyCPU'">
|
||||
<DebugType>full</DebugType>
|
||||
<DefineConstants>$(DefineConstants);</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DumpExtensions" />
|
||||
<PackageReference Include="Google.Protobuf" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="ClientToServer.PIDL">
|
||||
<Generator></Generator>
|
||||
</None>
|
||||
<None Update="proto\ClientToChat.proto">
|
||||
<Generator></Generator>
|
||||
</None>
|
||||
<None Update="proto\ClientToGame.proto">
|
||||
<Generator></Generator>
|
||||
</None>
|
||||
<None Update="proto\ClientToLogin.proto">
|
||||
<Generator></Generator>
|
||||
</None>
|
||||
<None Update="proto\Define_Common.proto">
|
||||
<Generator></Generator>
|
||||
</None>
|
||||
<None Update="proto\ServerMessage.proto">
|
||||
<Generator></Generator>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="out-RMI\" />
|
||||
</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>
|
||||
|
||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
||||
<ItemGroup>
|
||||
<GeneratedProtoFiles Include="out-Proto\*.cs" />
|
||||
<GeneratedRMIFiles Include="out-RMI\*.cs" />
|
||||
</ItemGroup>
|
||||
<Exec Command="call proto_build.bat
call pidl_build.bat
call client_proto_build.bat" />
|
||||
|
||||
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user