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.
106 lines
4.1 KiB
106 lines
4.1 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net6.0</TargetFramework> |
|
<RootNamespace>ET</RootNamespace> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<OutputPath>../../Bin/</OutputPath> |
|
<DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<OutputPath>../../Bin/</OutputPath> |
|
<DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\..\Tools\Analyzer\Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> |
|
<ProjectReference Include="..\Model\Robot.Model.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="..\..\Server\Hotfix\Demo\Session\InnerMessageDispatcherHelper.cs"> |
|
<Link>Server\Session\InnerMessageDispatcherHelper.cs</Link> |
|
</Compile> |
|
<Compile Include="..\..\Server\Hotfix\Demo\Session\SessionStreamDispatcherServerInner.cs"> |
|
<Link>Server\Session\SessionStreamDispatcherServerInner.cs</Link> |
|
</Compile> |
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\AI\**\*.cs"> |
|
<Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\Message\**\*.cs"> |
|
<Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\MessageOuter\**\*.cs"> |
|
<Link>Module\MessageOuter\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\Numeric\**\*.cs"> |
|
<Link>Module\Numeric\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Server\Hotfix\Module\Actor\**\*.cs"> |
|
<Link>Module\Actor\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Server\Hotfix\Module\Message\**\*.cs"> |
|
<Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Server\Hotfix\Module\MessageInner\**\*.cs"> |
|
<Link>Module\MessageInner\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Server\Hotfix\Module\NetworkTCP\**\*.cs"> |
|
<Link>Module\NetworkTCP\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Demo\**\*.cs"> |
|
<Link>Demo\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Core\**\*.cs"> |
|
<Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\Config\**\*.cs"> |
|
<Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\Ping\**\*.cs"> |
|
<Link>Module\Ping\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Unity\Codes\Hotfix\Module\Recast\**\*.cs"> |
|
<Link>Module\Recast\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Server\Hotfix\Module\Console\**\*.cs"> |
|
<Link>Module\Console\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
|
|
<Compile Include="..\..\Server\Hotfix\Config\**\*.cs"> |
|
<Link>Config\%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Folder Include="Server" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Reference Include="NCalc, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null"> |
|
<HintPath>..\..\Unity\Temp\Bin\Debug\NCalc.dll</HintPath> |
|
</Reference> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|