2014-07-31 08:08:06 +02:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
|
|
@echo *******************************************
|
|
|
|
|
@echo * COPYING BINARIES FOR NUGET *
|
|
|
|
|
@echo *******************************************
|
|
|
|
|
xcopy ..\..\src\bin\Release\NmeaParser.WinStore.dll .\NmeaParser\lib\netcore45\ /Y
|
2014-11-15 02:51:46 +01:00
|
|
|
xcopy ..\..\src\bin\Release\NmeaParser.WinStore.xml .\NmeaParser\lib\netcore45\ /Y
|
2014-07-31 08:08:06 +02:00
|
|
|
xcopy ..\..\src\bin\Release\NmeaParser.WinPhone.dll .\NmeaParser\lib\wpa\ /Y
|
2014-11-15 02:51:46 +01:00
|
|
|
xcopy ..\..\src\bin\Release\NmeaParser.WinPhone.xml .\NmeaParser\lib\wpa\ /Y
|
2014-07-31 08:08:06 +02:00
|
|
|
xcopy ..\..\src\bin\Release\NmeaParser.WinDesktop.dll .\NmeaParser\lib\net40-client\ /Y
|
2014-11-15 02:51:46 +01:00
|
|
|
xcopy ..\..\src\bin\Release\NmeaParser.WinDesktop.xml .\NmeaParser\lib\net40-client\ /Y
|
2014-07-31 08:08:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@echo *******************************************
|
|
|
|
|
@echo * BUILDING NUGET PAKCAGE *
|
|
|
|
|
@echo *******************************************
|
|
|
|
|
nuget pack NmeaParser\NmeaParser.nuspec -o .\
|