ET.Hotfix.csproj 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>12</LangVersion>
  6. <AssemblyName>ET.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>$(SolutionDir)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>$(SolutionDir)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\Library\PackageCache\cn.etetet.*\Scripts\Hotfix\Share\**\*.cs">
  28. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="..\..\Unity\Library\PackageCache\cn.etetet.*\Scripts\Hotfix\Server\**\*.cs">
  31. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. <Compile Include="..\..\Unity\Library\PackageCache\cn.etetet.*\CodeMode\Hotfix\Server\**\*.cs">
  34. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Packages\cn.etetet.*\Scripts\Hotfix\Share\**\*.cs">
  37. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  38. </Compile>
  39. <Compile Include="..\..\Unity\Packages\cn.etetet.*\Scripts\Hotfix\Server\**\*.cs">
  40. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  41. </Compile>
  42. <Compile Include="..\..\Unity\Packages\cn.etetet.*\CodeMode\Hotfix\Server\**\*.cs">
  43. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  44. </Compile>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\Model\ET.Model.csproj" />
  48. </ItemGroup>
  49. </Project>