Skip to content

Commit ce36037

Browse files
committed
Fix CI script and update README.md.
1 parent ba5b6aa commit ce36037

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

Build/PackageNuGet.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ copy ..\LibTessDotNet\bin\Release\netstandard2.0 TempNuGet\lib\netstandard2.0
99
copy ..\LibTessDotNet\bin\ReleaseDouble\netstandard2.0 TempNuGet\lib\netstandard2.0
1010

1111
pushd TempNuGet
12-
..\nuget.exe spec -force -a lib\netstandard2.0\LibTessDotNet.dll
13-
..\nuget.exe spec -force -a lib\netstandard2.0\LibTessDotNet.Double.dll
12+
nuget spec -force -a lib\netstandard2.0\LibTessDotNet.dll
13+
nuget spec -force -a lib\netstandard2.0\LibTessDotNet.Double.dll
1414
python ..\PackageNuGet.py
15-
..\nuget.exe pack LibTessDotNet.nuspec -Symbols -SymbolPackageFormat snupkg
16-
..\nuget.exe pack LibTessDotNet.Double.nuspec -Symbols -SymbolPackageFormat snupkg
15+
nuget pack LibTessDotNet.nuspec -Symbols -SymbolPackageFormat snupkg
16+
nuget pack LibTessDotNet.Double.nuspec -Symbols -SymbolPackageFormat snupkg
1717
popd
1818

1919
popd

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ Provide a robust and fast tessellator (polygons with N vertices in the output) f
77

88
### Requirements
99

10-
* .NET framework 2.0 (pure CLR, should work with Mono, Unity or XNA)
11-
* C# 3.0 compiler if you want to compile (I am guilty of using 'var')
12-
- WinForms for the testbed
13-
- Solution file for Visual Studio 2010
10+
* .NET Standard 2.0 (see [here](https://docs.microsoft.com/en-us/dotnet/standard/net-standard) for more information)
1411

1512
### Features
1613

@@ -36,6 +33,11 @@ Provide a robust and fast tessellator (polygons with N vertices in the output) f
3633

3734
![Benchmarks](https://raw.github.com/speps/LibTessDotNet/master/TessBed/Misc/benchmarks.png)
3835

36+
### Build
37+
38+
```
39+
dotnet build
40+
```
3941

4042
### Example
4143

0 commit comments

Comments
 (0)