This commit is contained in:
Robert Muehsig
2017-11-05 22:07:59 +01:00
parent 4c7fe38552
commit 915e31ff1f
2 changed files with 13 additions and 5 deletions

View File

@@ -1,11 +1,19 @@
# not release
# 0.0.6
ElectronNET.CLI:
* nuget packages are now release bits and have the correct assembly verion
* Version command
* better devCleanup.cmd
* Better Platform Support [Issue](https://github.com/ElectronNET/Electron.NET/issues/6) - thanks to @Petermarcu
* Better Platform Support Issue - thanks to @Petermarcu
* Start Command should now work on OSX/Linux
ElectronNET.API:
* Thread-Safe methods
# 0.0.5

View File

@@ -2,11 +2,11 @@ echo "Start building Electron.NET dev stack..."
echo "Restore & Build API"
cd ElectronNet.API
dotnet restore
dotnet build --configuration Release --force /property:Version=0.0.5
dotnet pack /p:Version=0.0.5 --configuration Release --force --output "%~dp0artifacts"
dotnet build --configuration Release --force /property:Version=0.0.6
dotnet pack /p:Version=0.0.6 --configuration Release --force --output "%~dp0artifacts"
cd ..
echo "Restore & Build API"
cd ElectronNet.CLI
dotnet restore
dotnet build --configuration Release --force /property:Version=0.0.5
dotnet pack /p:Version=0.0.5 --configuration Release --force --output "%~dp0artifacts"
dotnet build --configuration Release --force /property:Version=0.0.6
dotnet pack /p:Version=0.0.6 --configuration Release --force --output "%~dp0artifacts"