Skip to content

Commit

Permalink
feat: add nuget package config (#6)
Browse files Browse the repository at this point in the history
* feat: add nuget config to Lib.csproj

* feat: add link to README
  • Loading branch information
tedigc authored Nov 12, 2023
1 parent dfb4631 commit 51f1114
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

A Monogame implementation of the Separating Axis Theorem for convex polygon intersection.

[View on nuget](https://www.nuget.org/packages/Halfcut.SeparatingAxisTheorem.Lib/)

## Usage

```c#
Expand Down
10 changes: 10 additions & 0 deletions SeparatingAxisTheorem.Lib/SeparatingAxisTheorem.Lib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>SatTheorem.Lib</RootNamespace>
<PackageId>Halfcut.SeparatingAxisTheorem.Lib</PackageId>
<Version>0.0.2</Version>
<Authors>Ted Cater</Authors>
<Company>Halfcut</Company>
<Product>SeparatingAxisTheorem</Product>
<Description>A Monogame implementation of the Separating Axis Theorem (SAT) for convex polygon intersection</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>

0 comments on commit 51f1114

Please sign in to comment.