Server.Hotfix.csproj 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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\Recast\**\*.cs">
  38. <Link>Module\Recast\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Message\**\*.cs">
  41. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  42. </Compile>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\Model\Server.Model.csproj" />
  46. </ItemGroup>
  47. </Project>