DotNet.Hotfix.csproj 2.0 KB

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