Server.Hotfix.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>8</LangVersion>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
  13. <OutputPath>..\..\Bin\</OutputPath>
  14. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
  18. <OutputPath>..\..\Bin\</OutputPath>
  19. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Compile Remove="Other\**" />
  23. <Compile Include="..\..\Unity\Assets\Hotfix\Demo\Move\MoveComponentSystem.cs">
  24. <Link>Demo\Move\MoveComponentSystem.cs</Link>
  25. </Compile>
  26. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Config\ConfigComponentSystem.cs">
  27. <Link>Module\Config\ConfigComponentSystem.cs</Link>
  28. </Compile>
  29. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\MessageDispatcherComponentSystem.cs">
  30. <Link>Module\Message\MessageDispatcherComponentSystem.cs</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetKcpComponentSystem.cs">
  33. <Link>Module\Message\NetKcpComponentSystem.cs</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetThreadComponentSystem.cs">
  36. <Link>Module\Message\NetThreadComponentSystem.cs</Link>
  37. </Compile>
  38. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionAcceptTimeoutComponentSystem.cs">
  39. <Link>Module\Message\SessionAcceptTimeoutComponentSystem.cs</Link>
  40. </Compile>
  41. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionIdleCheckerComponentSystem.cs">
  42. <Link>Module\Message\SessionIdleCheckerComponentSystem.cs</Link>
  43. </Compile>
  44. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs">
  45. <Link>Module\Numeric\NumericChangeEvent_NotifyWatcher.cs</Link>
  46. </Compile>
  47. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericWatcher_Hp_ShowUI.cs">
  48. <Link>Module\Numeric\NumericWatcher_Hp_ShowUI.cs</Link>
  49. </Compile>
  50. <Compile Include="..\..\Unity\Assets\Hotfix\Module\AI\**\*.cs">
  51. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  52. </Compile>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <ProjectReference Include="..\Model\Server.Model.csproj" />
  56. </ItemGroup>
  57. </Project>