Server.Hotfix.csproj 2.3 KB

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