Server.Hotfix.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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;NOT_UNITY;SERVER;</DefineConstants>
  13. <OutputPath>..\..\Bin\</OutputPath>
  14. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  18. <OutputPath>..\..\Bin\</OutputPath>
  19. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Compile Include="..\..\Unity\Assets\Hotfix\Demo\Move\MoveComponentSystem.cs">
  23. <Link>Demo\Move\MoveComponentSystem.cs</Link>
  24. </Compile>
  25. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Config\ConfigComponentSystem.cs">
  26. <Link>Module\Config\ConfigComponentSystem.cs</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\MessageDispatcherComponentSystem.cs">
  29. <Link>Module\Message\MessageDispatcherComponentSystem.cs</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetKcpComponentSystem.cs">
  32. <Link>Module\Message\NetKcpComponentSystem.cs</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetThreadComponentSystem.cs">
  35. <Link>Module\Message\NetThreadComponentSystem.cs</Link>
  36. </Compile>
  37. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionAcceptTimeoutComponentSystem.cs">
  38. <Link>Module\Message\SessionAcceptTimeoutComponentSystem.cs</Link>
  39. </Compile>
  40. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionIdleCheckerComponentSystem.cs">
  41. <Link>Module\Message\SessionIdleCheckerComponentSystem.cs</Link>
  42. </Compile>
  43. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs">
  44. <Link>Module\Numeric\NumericChangeEvent_NotifyWatcher.cs</Link>
  45. </Compile>
  46. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericWatcher_Hp_ShowUI.cs">
  47. <Link>Module\Numeric\NumericWatcher_Hp_ShowUI.cs</Link>
  48. </Compile>
  49. <Compile Include="..\..\Unity\Assets\Hotfix\Module\AI\**\*.cs">
  50. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  51. </Compile>
  52. </ItemGroup>
  53. <ItemGroup>
  54. <ProjectReference Include="..\Model\Server.Model.csproj" />
  55. </ItemGroup>
  56. </Project>