Skip to content

Commit

Permalink
build: create SceneGraph package
Browse files Browse the repository at this point in the history
Fixes #159
  • Loading branch information
dwmkerr committed Jun 30, 2019
1 parent 609c21e commit 7153f1d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 14 deletions.
26 changes: 12 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,23 @@ Check out the [Samples](https://github.com/dwmkerr/sharpgl/wiki/Samples), they'r

## Getting Started

Installing SharpGL is easy, just use NuGet:
Install SharpGL packages with NuGet, either by using the Package Explorer or the Package Manager tool, e.g:

```
PM> Install-Package SharpGL
```

The Core is simply the full set of OpenGL functions and extensions wrapped and available to use.

```
PM> Install-Package SharpGL.WinForms
```

SharpGL for WinForms includes the Core as well as OpenGL controls to drop into your WinForms app.

```
PM> Install-Package SharpGL.WPF
```

SharpGL for WPF includes the Core as well as OpenGL controls to drop into your WPF app.
The available packages are:

| Package | Link | Usage |
|-----------|-------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
| `SharpGL` | [![SharpGL Core](https://img.shields.io/nuget/v/SharpGL.svg)](https://www.nuget.org/packages/SharpGL) | The Core is simply the full set of OpenGL functions and extensions wrapped and available to use.
|
| `SharpGL.SceneGraph` | [![SharpGL SceneGraph](https://img.shields.io/nuget/v/SharpGL.SceneGraph.svg)](https://www.nuget.org/packages/SharpGL.SceneGraph) | The SceneGraph library contains a full class library which models key OpenGL entities. |
| `SharpGL.WPF` | [![SharpGL WPF](https://img.shields.io/nuget/v/SharpGL.WPF.svg)](https://www.nuget.org/packages/SharpGL.WPF) | SharpGL for WPF includes the Core as well as OpenGL controls to drop into your WPF app.
|
| `SharpGL.WinForms` | [![SharpGL WinForms](https://img.shields.io/nuget/v/SharpGL.WinForms.svg)](https://www.nuget.org/packages/SharpGL.WinForms) | SharpGL for WinForms includes the Core as well as OpenGL controls to drop into your WinForms app.
|

There are project templates available for SharpGL WinForms and WPF projects - just search for SharpGL on the Visual Studio Extensions gallery, or get the extensions directly:

Expand Down
19 changes: 19 additions & 0 deletions source/SharpGL/Core/SharpGL.SceneGraph/SharpGL.SceneGraph.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 SceneGraph</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 Scene Graph library.</description>
<summary>SharpGL wraps the popular OpenGL library. This package installs SharpGL and the Scene Graph library.</summary>
<copyright>Copyright © Dave Kerr 2019</copyright>
<tags>SharpGL,OpenGL,SceneGraph</tags>
<dependencies>
<dependency id="SharpGL" version="$version$" />
</dependencies>
</metadata>
</package>

0 comments on commit 7153f1d

Please sign in to comment.