Apps.Hotfix.csproj 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>8</LangVersion>
  6. <AssemblyName>Hotfix</AssemblyName>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <DefineConstants>TRACE2_0;NOT_UNITY;SERVER;</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  19. <OutputPath>..\..\Bin\</OutputPath>
  20. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Numeric\**\*.cs">
  24. <Link>Module\Numeric\%(RecursiveDir)%(FileName)%(Extension)</Link>
  25. </Compile>
  26. <Compile Include="..\..\Unity\Codes\Hotfix\Module\AI\**\*.cs">
  27. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  28. </Compile>
  29. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Config\**\*.cs">
  30. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Recast\**\*.cs">
  33. <Link>Module\Recast\%(RecursiveDir)%(FileName)%(Extension)</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Message\**\*.cs">
  36. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  37. </Compile>
  38. <Compile Include="..\..\Unity\Codes\Hotfix\Client\**\*.cs">
  39. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  40. </Compile>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <ProjectReference Include="..\Model\Apps.Model.csproj" />
  44. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  45. </ItemGroup>
  46. </Project>