Skip to content

Commit 51f1114

Browse files
authored
feat: add nuget package config (#6)
* feat: add nuget config to Lib.csproj * feat: add link to README
1 parent dfb4631 commit 51f1114

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

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

5+
[View on nuget](https://www.nuget.org/packages/Halfcut.SeparatingAxisTheorem.Lib/)
6+
57
## Usage
68

79
```c#

SeparatingAxisTheorem.Lib/SeparatingAxisTheorem.Lib.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,20 @@
22
<PropertyGroup>
33
<TargetFramework>net6.0</TargetFramework>
44
<RootNamespace>SatTheorem.Lib</RootNamespace>
5+
<PackageId>Halfcut.SeparatingAxisTheorem.Lib</PackageId>
6+
<Version>0.0.2</Version>
7+
<Authors>Ted Cater</Authors>
8+
<Company>Halfcut</Company>
9+
<Product>SeparatingAxisTheorem</Product>
10+
<Description>A Monogame implementation of the Separating Axis Theorem (SAT) for convex polygon intersection</Description>
11+
<PackageReadmeFile>README.md</PackageReadmeFile>
512
</PropertyGroup>
613
<ItemGroup>
714
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303">
815
<PrivateAssets>All</PrivateAssets>
916
</PackageReference>
1017
</ItemGroup>
18+
<ItemGroup>
19+
<None Include="../README.md" Pack="true" PackagePath="\"/>
20+
</ItemGroup>
1121
</Project>

0 commit comments

Comments
 (0)