Server.Hotfix.csproj 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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\Module\Config\ConfigComponentSystem.cs">
  24. <Link>Module\Config\ConfigComponentSystem.cs</Link>
  25. </Compile>
  26. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\MessageDispatcherComponentSystem.cs">
  27. <Link>Module\Message\MessageDispatcherComponentSystem.cs</Link>
  28. </Compile>
  29. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetKcpComponentSystem.cs">
  30. <Link>Module\Message\NetKcpComponentSystem.cs</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetThreadComponentSystem.cs">
  33. <Link>Module\Message\NetThreadComponentSystem.cs</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionAcceptTimeoutComponentSystem.cs">
  36. <Link>Module\Message\SessionAcceptTimeoutComponentSystem.cs</Link>
  37. </Compile>
  38. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionIdleCheckerComponentSystem.cs">
  39. <Link>Module\Message\SessionIdleCheckerComponentSystem.cs</Link>
  40. </Compile>
  41. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs">
  42. <Link>Module\Numeric\NumericChangeEvent_NotifyWatcher.cs</Link>
  43. </Compile>
  44. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericWatcher_Hp_ShowUI.cs">
  45. <Link>Module\Numeric\NumericWatcher_Hp_ShowUI.cs</Link>
  46. </Compile>
  47. <EmbeddedResource Remove="Other\**" />
  48. <None Remove="Other\**" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\Model\Server.Model.csproj" />
  52. </ItemGroup>
  53. </Project>