DotNet.ThirdParty.csproj 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <Nullable>disable</Nullable>
  5. <LangVersion>11</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. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  21. <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
  22. <OutputPath>..\..\Bin\</OutputPath>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\TrueSync\**\*.cs">
  28. <Link>TrueSync/%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\ETTask\**\*.cs">
  31. <Link>ETTask/%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\Kcp\**\*.cs">
  34. <Link>Kcp/%(RecursiveDir)%(FileName)%(Extension)</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\NativeCollection\**\*.cs">
  37. <Link>NativeCollection/%(RecursiveDir)%(FileName)%(Extension)</Link>
  38. </Compile>
  39. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\DotRecast\**\*.cs">
  40. <Link>DotRecast/%(RecursiveDir)%(FileName)%(Extension)</Link>
  41. </Compile>
  42. <Compile Include="..\..\Unity\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
  43. <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
  44. </Compile>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  48. <PackageReference Include="EPPlus" Version="5.8.8" />
  49. <PackageReference Include="MemoryPack" Version="1.10.0" />
  50. <PackageReference Include="MongoDB.Driver" Version="2.17.1" />
  51. <PackageReference Include="NLog" Version="4.7.15" />
  52. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  53. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  54. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  55. </ItemGroup>
  56. </Project>