forked from KonajuGames/NVorbis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |