Share.Tool.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>false</ImplicitUsings>
  6. <Nullable>disable</Nullable>
  7. <RootNamespace>ET</RootNamespace>
  8. <LangVersion>12</LangVersion>
  9. <PackageId>Apps.Tool</PackageId>
  10. <AssemblyName>Tool</AssemblyName>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  14. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  17. <OutputPath>..\..\Bin\</OutputPath>
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. <DefineConstants>DOTNET</DefineConstants>
  20. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  23. <OutputPath>..\..\Bin\</OutputPath>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. <DefineConstants>DOTNET</DefineConstants>
  26. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Compile Include="..\..\Unity\Packages\com.et.core\Runtime\Model\Share\Module\Config\**\*.cs">
  30. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Packages\com.et.core\Runtime\Model\Share\Module\Log\**\*.cs">
  33. <Link>Module\Log\%(RecursiveDir)%(FileName)%(Extension)</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Packages\com.et.core\Runtime\Network\OpcodeRangeDefine.cs">
  36. <Link>Module\Message\OpcodeRangeDefine.cs</Link>
  37. </Compile>
  38. <Compile Update="Proto2CS\ToolEvent_Proto2CS.cs">
  39. <Link>Share\ToolEvent_Proto2CS.cs</Link>
  40. </Compile>
  41. <Compile Update="ExcelExporter\ToolEvent_ExcelExporter.cs">
  42. <Link>Share\FiberInit_Proto2CS.cs</Link>
  43. </Compile>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <None Update="Template.txt">
  47. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  48. </None>
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\..\DotNet\Core\DotNet.Core.csproj" />
  52. </ItemGroup>
  53. </Project>