Tools.App.csproj 2.2 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. <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\ETTask\ETTask.csproj" />
  43. <ProjectReference Include="..\..\ThirdParty\ShareLib\ShareLib.csproj" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Folder Include="Apps" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <None Update="Template.txt">
  50. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  51. </None>
  52. </ItemGroup>
  53. </Project>