DotNet.ThirdParty.csproj 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>disable</Nullable>
  5. <LangVersion>12</LangVersion>
  6. <RootNamespace>ET</RootNamespace>
  7. <AssemblyName>ThirdParty</AssemblyName>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  14. <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
  15. <OutputPath>..\..\Bin\</OutputPath>
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  18. <Optimize>true</Optimize>
  19. <NoWarn>0169,0649,3021,8981,NU1903</NoWarn>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  22. <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
  23. <OutputPath>..\..\Bin\</OutputPath>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. <NoWarn>0169,0649,3021,8981,NU1903</NoWarn>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\TrueSync\**\*.cs">
  30. <Link>TrueSync/%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\ETTask\**\*.cs">
  33. <Link>ETTask/%(RecursiveDir)%(FileName)%(Extension)</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\Kcp\**\*.cs">
  36. <Link>Kcp/%(RecursiveDir)%(FileName)%(Extension)</Link>
  37. </Compile>
  38. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\NativeCollection\**\*.cs">
  39. <Link>NativeCollection/%(RecursiveDir)%(FileName)%(Extension)</Link>
  40. </Compile>
  41. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\DotRecast\**\*.cs">
  42. <Link>DotRecast/%(RecursiveDir)%(FileName)%(Extension)</Link>
  43. </Compile>
  44. <Compile Include="..\..\Unity\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
  45. <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
  46. </Compile>
  47. </ItemGroup>
  48. <ItemGroup>
  49. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  50. <PackageReference Include="EPPlus" Version="5.8.8" />
  51. <PackageReference Include="MemoryPack" Version="1.10.0" />
  52. <PackageReference Include="MongoDB.Driver" Version="2.17.1" />
  53. <PackageReference Include="NLog" Version="4.7.15" />
  54. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  55. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  56. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  57. </ItemGroup>
  58. </Project>