mirror of
https://github.com/S7NetPlus/s7netplus.git
synced 2026-02-17 22:38:27 +08:00
Added NuGetPack to make it easier to create NuPkg files for updated versions. Updated README with NuGet package location.
7 lines
247 B
Batchfile
7 lines
247 B
Batchfile
@echo off
|
|
set /p version="Version: "
|
|
msbuild S7.Net\S7.Net.csproj /P:Configuration=Release
|
|
rmdir /S /Q nuget-pack\lib
|
|
xcopy S7.Net\bin\Release\S7.Net.dll nuget-pack\lib\net45\ /Y
|
|
.nuget\nuget pack nuget-pack\S7.Net.nuspec -Version %version%
|
|
pause |