Server.Hotfix.csproj 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.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\Codes\Hotfix\Demo\Move\MoveComponentSystem.cs">
  23. <Link>Demo\Move\MoveComponentSystem.cs</Link>
  24. </Compile>
  25. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Config\ConfigComponentSystem.cs">
  26. <Link>Module\Config\ConfigComponentSystem.cs</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs">
  29. <Link>Module\Numeric\NumericChangeEvent_NotifyWatcher.cs</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Numeric\NumericWatcher_Hp_ShowUI.cs">
  32. <Link>Module\Numeric\NumericWatcher_Hp_ShowUI.cs</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Codes\Hotfix\Module\AI\**\*.cs">
  35. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Message\**\*.cs">
  38. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <ProjectReference Include="..\Model\Server.Model.csproj" />
  43. </ItemGroup>
  44. </Project>