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.
42 lines
2.8 KiB
42 lines
2.8 KiB
1 month ago
|
<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>
|
||
|
<NoWarn>1701;1702;0649</NoWarn>
|
||
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP;ZW_OPTIMIZE_ILRUNTIME;</DefineConstants>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
|
<PlatformTarget>x64</PlatformTarget>
|
||
|
<OutputPath>..\publish\bin\</OutputPath>
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
<NoWarn>1701;1702;0649</NoWarn>
|
||
|
<DefineConstants>TRACE;RELEASE;NETCOREAPP;BATTLE_SERVER;ZW_OPTIMIZE_ILRUNTIME;</DefineConstants>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Include="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\**\*.cs" Exclude="
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\AIMachine.cs;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\HotFixLogic\GameConfigMgr.cs;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\HotFixLogic\TabConfig\*;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\HotFixLogic\GameConfig\*;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\HotFixLogic\GameConfigExt\*;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\Core\Sog\**;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\Core\Apex\ApexPath\Debugging\**;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\Core\Apex\ApexSteer\Debugging\**;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\HotFixLogic\protocol\*;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\HotFixInVoke.cs;
 ..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\MonoInterp.cs;
 ">
|
||
|
<Link>Src\%(RecursiveDir)%(FileName)%(Extension)</Link>
|
||
|
</Compile>
|
||
|
<Compile Remove="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\Core\ILRuntime\**" />
|
||
|
<Compile Remove="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\Core\NoILJson\**" />
|
||
|
<Compile Remove="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\Unity\**" />
|
||
|
<Compile Remove="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\ILRuntimeCLRBinding.cs" />
|
||
|
<Compile Remove="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\ILRuntimeManager.cs" />
|
||
|
<Compile Remove="..\..\arpg_cli_proj\arpg\Assets\Scripts\AIMachine\ILTRFixed64Binder.cs" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\ServerComm\ServerComm.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|