Skip to content

Commit

Permalink
build: use nuspec
Browse files Browse the repository at this point in the history
  • Loading branch information
dwmkerr committed May 6, 2019
1 parent c08fddb commit ee49387
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
3 changes: 3 additions & 0 deletions release/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# IMPORTANT

All functionality and code in this folder is being deprecated. Releases will be handled by the scripts in the `source/SharpGL` folder and the AppVeyor.
19 changes: 19 additions & 0 deletions source/SharpGL/Core/SharpGL.WPF/SharpGL.WPF.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>SharpGL</title>
<authors>Dave Kerr</authors>
<owners>Dave Kerr</owners>
<projectUrl>https://github.com/dwmkerr/sharpgl</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>SharpGL wraps the popular OpenGL library. This package installs SharpGL and the WPF controls.</description>
<summary>SharpGL wraps the popular OpenGL library. This package installs SharpGL and the WPF controls.</summary>
<copyright>Copyright © Dave Kerr 2019</copyright>
<tags>SharpGL,OpenGL,WPF</tags>
<dependencies>
<dependency id="SharpGL" version="$version$" />
</dependencies>
</metadata>
</package>
19 changes: 19 additions & 0 deletions source/SharpGL/Core/SharpGL.WinForms/SharpGL.WinForms.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>SharpGL for WinForms</title>
<authors>Dave Kerr</authors>
<owners>Dave Kerr</owners>
<projectUrl>https://github.com/dwmkerr/sharpgl</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>SharpGL wraps the popular OpenGL library. This package installs SharpGL and the WinForms controls.</description>
<summary>SharpGL wraps the popular OpenGL library. This package installs SharpGL and the WinForms controls.</summary>
<copyright>Copyright © Dave Kerr 2019</copyright>
<tags>SharpGL,OpenGL,WinForms</tags>
<dependencies>
<dependency id="SharpGL" version="$version$" />
</dependencies>
</metadata>
</package>
16 changes: 16 additions & 0 deletions source/SharpGL/Core/SharpGL/SharpGL.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>SharpGL</title>
<authors>Dave Kerr</authors>
<owners>Dave Kerr</owners>
<projectUrl>https://github.com/dwmkerr/sharpgl</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>SharpGL is the core library for SharpGL. It provides wrappers for all OpenGL functions and also includes the Scene Graph classes. Installed as part of SharpGL for WinForms or SharpGL for WPF.</description>
<summary>SharpGL is the core library for SharpGL. It provides wrappers for all OpenGL functions and also includes the Scene Graph classes. Installed as part of SharpGL for WinForms or SharpGL for WPF.</summary>
<copyright>Copyright © Dave Kerr 2019</copyright>
<tags>SharpGL,OpenGL</tags>
</metadata>
</package>

0 comments on commit ee49387

Please sign in to comment.