DotNet.Hotfix.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>12</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>DOTNET</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  16. <NoWarn>0169,0649,3021,8981,CS9193,CS9192</NoWarn>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  19. <DefineConstants>DOTNET</DefineConstants>
  20. <OutputPath>..\..\Bin\</OutputPath>
  21. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  22. <Optimize>false</Optimize>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. <NoWarn>0169,0649,3021,8981,CS9193,CS9192</NoWarn>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Hotfix\Client\**\*.cs">
  28. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Hotfix\Server\**\*.cs">
  31. <Link>Server\%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Hotfix\Share\**\*.cs">
  34. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  35. </Compile>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  39. <ProjectReference Include="..\..\Share\Share.SourceGenerator\Share.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  40. <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
  41. <ProjectReference Include="..\Model\DotNet.Model.csproj" />
  42. </ItemGroup>
  43. </Project>