Added nuget spec

This commit is contained in:
unknown 2014-07-30 23:08:06 -07:00
parent 1222526371
commit f22d6e51e1
12 changed files with 53 additions and 76 deletions

View file

@ -0,0 +1,23 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>1.0.0</version>
<authors>Morten Nielsen</authors>
<owners>Morten Nielsen</owners>
<licenseUrl>http://opensource.org/licenses/ms-pl.html</licenseUrl>
<projectUrl>https://github.com/dotMorten/NmeaParser</projectUrl>
<id>SharpGIS.NmeaParser</id>
<title>NmeaParser</title>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An NMEA stream parser for serial port, bluetooth and file-based nmea simulation.</description>
<language>en-US</language>
<tags>nmea winrt wpf win8 win8.1 wp8.1 gps serialport bluetooth</tags>
<releaseNotes>
</releaseNotes>
</metadata>
<files>
<file src="lib\netcore45\NmeaParser.WinStore.dll" target="lib\netcore45\NmeaParser.WinStore.dll" />
<file src="lib\wpa\NmeaParser.WinPhone.dll" target="lib\wpa\NmeaParser.WinPhone.dll" />
<file src="lib\net40-client\NmeaParser.WinDesktop.dll" target="lib\net40-client\NmeaParser.WinDesktop.dll" />
</files>
</package>

BIN
Tools/Nuget/NuGet.exe Normal file

Binary file not shown.

View file

@ -0,0 +1,14 @@
@echo off
@echo *******************************************
@echo * COPYING BINARIES FOR NUGET *
@echo *******************************************
xcopy ..\..\src\bin\Release\NmeaParser.WinStore.dll .\NmeaParser\lib\netcore45\ /Y
xcopy ..\..\src\bin\Release\NmeaParser.WinPhone.dll .\NmeaParser\lib\wpa\ /Y
xcopy ..\..\src\bin\Release\NmeaParser.WinDesktop.dll .\NmeaParser\lib\net40-client\ /Y
@echo *******************************************
@echo * BUILDING NUGET PAKCAGE *
@echo *******************************************
nuget pack NmeaParser\NmeaParser.nuspec -o .\