Share.Tool.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>10</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\Assets\Mono\Core\**\*.cs">
  30. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Share\Module\Config\**\*.cs">
  33. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Share\Module\Log\**\*.cs">
  36. <Link>Module\Log\%(RecursiveDir)%(FileName)%(Extension)</Link>
  37. </Compile>
  38. <Compile Include="..\..\Unity\Assets\Scripts\Core\Module\Network\OpcodeRangeDefine.cs">
  39. <Link>Module\Message\OpcodeRangeDefine.cs</Link>
  40. </Compile>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <None Update="Template.txt">
  44. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  45. </None>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ProjectReference Include="..\..\DotNet\Core\DotNet.Core.csproj" />
  49. <ProjectReference Include="..\..\DotNet\ThirdParty\DotNet.ThirdParty.csproj" />
  50. </ItemGroup>
  51. </Project>