Apps.Hotfix.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>10</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;APPS;</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;APPS</DefineConstants>
  19. <OutputPath>..\..\Bin\</OutputPath>
  20. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <Compile Include="..\..\Unity\Codes\Hotfix\Module\**\*.cs">
  24. <Link>Module\%(RecursiveDir)%(FileName)%(Extension)</Link>
  25. </Compile>
  26. <Compile Include="..\..\Unity\Codes\Hotfix\Client\**\*.cs">
  27. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  28. </Compile>
  29. <Compile Include="..\..\Unity\Codes\Hotfix\Share\**\*.cs">
  30. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\Model\Apps.Model.csproj" />
  35. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  36. </ItemGroup>
  37. </Project>