Skip to content

Commit

Permalink
* Add nuget support files
Browse files Browse the repository at this point in the history
  • Loading branch information
ioctlLR committed Oct 10, 2012
1 parent ac056f4 commit cda0db1
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 0 deletions.
31 changes: 31 additions & 0 deletions NVorbis.NAudioSupport.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NVorbis.NAudioSupport</id>
<version>0.5.4</version>
<title />
<authors>Andrew Ward</authors>
<owners />
<licenseUrl>http://nvorbis.codeplex.com/license</licenseUrl>
<projectUrl>http://nvorbis.codeplex.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>NAudio support for NVorbis</description>
<summary>NAudio support for NVorbis</summary>
<releaseNotes>Fixes to nuget package</releaseNotes>
<language>en-US</language>
<tags>audio c# .NET sound vorbis</tags>
<dependencies>
<dependency id="NAudio" version="1.5" />
<dependency id="NVorbis" version="0.5.4" />
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" />
</frameworkAssemblies>
</metadata>
<files>
<file src="bin\NVorbis.NAudioSupport.dll" target="lib" />
<file src="bin\NVorbis.NAudioSupport.xml" target="lib" />
<file src="COPYING" />
<file src="README" />
</files>
</package>
27 changes: 27 additions & 0 deletions NVorbis.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NVorbis</id>
<version>0.5.4</version>
<title />
<authors>Andrew Ward</authors>
<owners />
<licenseUrl>http://nvorbis.codeplex.com/license</licenseUrl>
<projectUrl>http://nvorbis.codeplex.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A fully managed implementation of a Xiph.org Foundation Ogg Vorbis decoder.</description>
<summary>A managed Xiph.org Foundation Ogg Vorbis decoder</summary>
<releaseNotes>Fixes to nuget package</releaseNotes>
<language>en-US</language>
<tags>ogg vorbis xiph audio c# sound .NET</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" />
</frameworkAssemblies>
</metadata>
<files>
<file src="bin\NVorbis.dll" target="lib" />
<file src="bin\NVorbis.xml" target="lib" />
<file src="COPYING" />
<file src="README" />
</files>
</package>
Binary file added Tools/NuGet.exe
Binary file not shown.
12 changes: 12 additions & 0 deletions publish.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
:: make sure we have a clean release build
msbuild /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" NVorbis.sln

:: remove any existing nupkg files
del *.nupkg

:: build the nuget packages
tools\nuget pack NVorbis.nuspec
tools\nuget pack NVorbis.NAudioSupport.nuspec

:: upload the nuget packages
tools\nuget push *.nupkg

0 comments on commit cda0db1

Please sign in to comment.