forked from MoonsideGames/MoonTools.Bonk
				
			Compare commits
	
		
			3 Commits 
		
	
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								
								 | 
						c7fa0932d6 | |
| 
							
							
								
								 | 
						e57bae4c44 | |
| 
							
							
								
								 | 
						094cf4b3d2 | 
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
					<Project Sdk="Microsoft.NET.Sdk">
 | 
				
			||||||
  <PropertyGroup>
 | 
					  <PropertyGroup>
 | 
				
			||||||
    <Version>8.0.0</Version>
 | 
					    <Version>8.0.1</Version>
 | 
				
			||||||
    <TargetFramework>netstandard2.0</TargetFramework>
 | 
					    <TargetFramework>netstandard2.0</TargetFramework>
 | 
				
			||||||
    <Description>.NET Standard High Performance Collision Detection</Description>
 | 
					    <Description>.NET Standard High Performance Collision Detection</Description>
 | 
				
			||||||
    <PackageId>MoonTools.Bonk</PackageId>
 | 
					    <PackageId>MoonTools.Bonk</PackageId>
 | 
				
			||||||
| 
						 | 
					@ -14,15 +14,16 @@
 | 
				
			||||||
    <PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
 | 
					    <PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
 | 
				
			||||||
    <PackageProjectUrl>https://gitea.moonside.games/MoonsideGames/MoonTools.Bonk</PackageProjectUrl>
 | 
					    <PackageProjectUrl>https://gitea.moonside.games/MoonsideGames/MoonTools.Bonk</PackageProjectUrl>
 | 
				
			||||||
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | 
					    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | 
				
			||||||
 | 
					    <Platforms>x64</Platforms>
 | 
				
			||||||
  </PropertyGroup>
 | 
					  </PropertyGroup>
 | 
				
			||||||
  <ItemGroup>
 | 
					  <ItemGroup>
 | 
				
			||||||
    <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
 | 
					    <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
 | 
				
			||||||
      <PrivateAssets>all</PrivateAssets>
 | 
					      <PrivateAssets>all</PrivateAssets>
 | 
				
			||||||
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | 
					      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | 
				
			||||||
    </PackageReference>
 | 
					    </PackageReference>
 | 
				
			||||||
    <PackageReference Include="System.Collections.Immutable" Version="1.7.0"/>
 | 
					    <PackageReference Include="System.Collections.Immutable" Version="1.7.1" />
 | 
				
			||||||
    <PackageReference Include="System.Numerics.Vectors" Version="4.5.0"/>
 | 
					    <PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
 | 
				
			||||||
    <PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0"/>
 | 
					    <PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0" />
 | 
				
			||||||
    <PackageReference Include="MoonTools.Structs" Version="3.0.1"/>
 | 
					    <PackageReference Include="MoonTools.Structs" Version="3.0.1" />
 | 
				
			||||||
  </ItemGroup>
 | 
					  </ItemGroup>
 | 
				
			||||||
</Project>
 | 
					</Project>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
# MoonTools.Bonk
 | 
					# MoonTools.Bonk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[](https://www.nuget.org/packages/MoonTools.Bonk/)
 | 
					[](https://www.nuget.org/packages/MoonTools.Bonk/)
 | 
				
			||||||
[](https://drone.moonside.games/MoonsideGames/MoonTools.Bonk)
 | 
					[](https://gitea.drone.moonside.games/MoonsideGames/MoonTools.Bonk)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Bonk is a fast and modular collision detection system for .NET that is part of the MoonTools suite. It can be used with any .NET-based game engine.
 | 
					Bonk is a fast and modular collision detection system for .NET that is part of the MoonTools suite. It can be used with any .NET-based game engine.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
					<Project Sdk="Microsoft.NET.Sdk">
 | 
				
			||||||
  <PropertyGroup>
 | 
					  <PropertyGroup>
 | 
				
			||||||
    <TargetFramework>netcoreapp3.0</TargetFramework>
 | 
					    <TargetFramework>netcoreapp3.1</TargetFramework>
 | 
				
			||||||
    <IsPackable>false</IsPackable>
 | 
					    <IsPackable>false</IsPackable>
 | 
				
			||||||
  </PropertyGroup>
 | 
					  </PropertyGroup>
 | 
				
			||||||
  <ItemGroup>
 | 
					  <ItemGroup>
 | 
				
			||||||
| 
						 | 
					@ -12,4 +12,4 @@
 | 
				
			||||||
  <ItemGroup>
 | 
					  <ItemGroup>
 | 
				
			||||||
    <ProjectReference Include="..\Bonk\Bonk.csproj" />
 | 
					    <ProjectReference Include="..\Bonk\Bonk.csproj" />
 | 
				
			||||||
  </ItemGroup>
 | 
					  </ItemGroup>
 | 
				
			||||||
</Project>
 | 
					</Project>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue