Tools.App.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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="..\..\Unity\Codes\Model\Core\**\*.cs">
  29. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Assets\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="..\..\Unity\Codes\Model\Module\Config\**\*.cs">
  38. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <ProjectReference Include="..\..\ThirdParty\ShareLib\ShareLib.csproj" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Folder Include="Apps" />
  46. </ItemGroup>
  47. </Project>