Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.8KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AssemblyName>Svelto.ECS</AssemblyName>
  4. <LangVersion>8</LangVersion>
  5. <TargetFramework>netstandard2.0</TargetFramework>
  6. <Company>Svelto</Company>
  7. <AssemblyVersion>3.2.1</AssemblyVersion>
  8. <PackageVersion>3.2.1</PackageVersion>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <PackageId>Svelto.ECS</PackageId>
  12. <Authors>Sebastiano Mandala</Authors>
  13. <RepositoryUrl>https://github.com/sebas77/Svelto.ECS</RepositoryUrl>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <UseSharedCompilation>false</UseSharedCompilation>
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. <UseSharedCompilation>false</UseSharedCompilation>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)' == 'NugetPack' "> <!-- Do not delete. Used for nuget packing -->
  26. <NuspecFile>Svelto.ECS.nuspec</NuspecFile>
  27. <NuspecProperties>version=$(PackageVersion)</NuspecProperties>
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <UseSharedCompilation>false</UseSharedCompilation>
  30. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <PackageReference Include="System.Memory" Version="4.5.4" />
  34. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
  35. <None Remove="**\*.meta" />
  36. <ProjectReference Include="..\com.sebaslab.svelto.common\Svelto.Common.csproj" /> <!-- Do not delete. Used for nuget packing -->
  37. </ItemGroup>
  38. </Project>