mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-01-04 15:50:27 +01:00
15 lines
594 B
Batchfile
15 lines
594 B
Batchfile
@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 .\
|