DotNet.Hotfix.csproj 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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\Session\NetClientComponentOnReadEvent.cs">
  26. <Link>Client\Session\NetClientComponentOnReadEvent.cs</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Hotfix\Client\Session\NetClientComponentSystem.cs">
  29. <Link>Client\Session\NetClientComponentSystem.cs</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Hotfix\Client\Session\SessionComponentSystem.cs">
  32. <Link>Client\Session\SessionComponentSystem.cs</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Hotfix\Share\**\*.cs">
  35. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Remove="Scenes\Game\Handler\C2G_EnterSceneReady.cs" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <PackageReference Include="SuperSocket.ClientEngine" Version="0.10.0" />
  43. <PackageReference Include="SuperSocket.ProtoBase" Version="1.7.0.17" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  47. <ProjectReference Include="..\App\DotNet.App.csproj" />
  48. <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
  49. <ProjectReference Include="..\Model\DotNet.Model.csproj" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Reference Include="Ice">
  53. <HintPath>..\library\Ice.dll</HintPath>
  54. </Reference>
  55. </ItemGroup>
  56. </Project>