Tools.App.csproj 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>false</ImplicitUsings>
  6. <Nullable>disable</Nullable>
  7. <AssemblyName>Tools</AssemblyName>
  8. <RootNamespace>ET</RootNamespace>
  9. <LangVersion>8</LangVersion>
  10. </PropertyGroup>
  11. <PropertyGroup>
  12. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  13. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  16. <OutputPath>..\..\Bin\</OutputPath>
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  19. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  22. <OutputPath>..\..\Bin\</OutputPath>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <Compile Include="..\..\..\GameClient\Assets\Game\CSShare\Codes\Model\Core\**\*.cs">
  29. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  30. </Compile>
  31. <Compile Include="..\..\..\GameClient\Assets\Game\CSShare\Mono\Core\**\*.cs">
  32. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  33. </Compile>
  34. <Compile Include="..\..\Server\Model\Base\**\*.cs">
  35. <Link>Base\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. <Compile Include="..\..\..\GameClient\Assets\Game\CSShare\Codes\Model\Module\Config\**\*.cs">
  38. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. <Compile Include="..\..\Server\Model\ExtNetwork\MessageSession\OpcodeRangeDefine.cs">
  41. <Link>MessageExt\OpcodeRangeDefine.cs</Link>
  42. </Compile>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\..\ThirdParty\ETTask\ETTask.csproj" />
  46. <ProjectReference Include="..\..\ThirdParty\ShareLib\ShareLib.csproj" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Folder Include="..\..\..\GameClient\Assets\Game\CSShare\Codes\Model\Module\Numeric">
  50. <Link>Module\Numeric</Link>
  51. </Folder>
  52. <Folder Include="Apps" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <None Update="Template.txt">
  56. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  57. </None>
  58. </ItemGroup>
  59. </Project>