You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
1.5 KiB

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>..\bin\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>TRACE;DEBUG;NETCOREAPP;NETCOREAPP2_1;SERVER_BUILD_IN;BEHAVIAC_NOT_USE_UNITY;SERVER_MODE;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>..\publish\bin\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>TRACE;BEHAVIAC_NOT_USE_UNITY;BEHAVIAC_RELEASE;SERVER_MODE;</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="ServerDataObject\BattleServer\BattleData\**" />
<EmbeddedResource Remove="ServerDataObject\BattleServer\BattleData\**" />
<None Remove="ServerDataObject\BattleServer\BattleData\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DynamicExpresso.Core" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sog\Sog.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="protocol_class\" />
<Folder Include="ServerDataObject\FrameServer\" />
</ItemGroup>
</Project>