Apps.Tool.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <RootNamespace>ET</RootNamespace>
  8. <LangVersion>8</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>TRACECOREAPP;NOT_UNITY</DefineConstants>
  20. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  23. <OutputPath>..\..\Bin\</OutputPath>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  26. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Compile Include="..\..\Unity\Codes\Model\Core\**\*.cs">
  30. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Mono\Core\**\*.cs">
  33. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  34. </Compile>
  35. <Compile Include="..\..\Apps\Model\Base\**\*.cs">
  36. <Link>Base\%(RecursiveDir)%(FileName)%(Extension)</Link>
  37. </Compile>
  38. <Compile Include="..\..\Unity\Codes\Model\Module\Config\**\*.cs">
  39. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  40. </Compile>
  41. <Compile Include="..\..\Unity\Codes\Model\Module\Message\OpcodeRangeDefine.cs">
  42. <Link>Module\Message\OpcodeRangeDefine.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="..\ThirdParty\Apps.ThirdParty.csproj" />
  52. </ItemGroup>
  53. </Project>