WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 20e2220

Browse files
committed
0.0.9
1 parent 041e294 commit 20e2220

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

Changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# not release
22

3+
# 0.0.9
4+
5+
ElectronNET.API:
6+
7+
* Better Async handling - thanks @danielmarbach
8+
9+
ElectronNET.CLI:
10+
11+
* More options on the 'build' command, e.g. for a 32bit debug build with electron prune: build /target custom win7-x86;win32 /dotnet-configuration Debug /electron-arch ia32 /electron-params "--prune=true "
12+
* .NET Core project is now build with Release configuration, but can be adjusted with the new params.
13+
* Be aware: "Breaking" (but because of the alpha status of this project, we won't use SemVer)
14+
15+
# 0.0.8
16+
17+
This version was skipped because we unfortunatly released a pre version of this on NuGet.
18+
319
# 0.0.7
420

521
ElectronNET.CLI:

buildReleaseNuGetPackages.cmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ echo "Start building Electron.NET dev stack..."
22
echo "Restore & Build API"
33
cd ElectronNet.API
44
dotnet restore
5-
dotnet build --configuration Release --force /property:Version=0.0.7
6-
dotnet pack /p:Version=0.0.7 --configuration Release --force --output "%~dp0artifacts"
5+
dotnet build --configuration Release --force /property:Version=0.0.9
6+
dotnet pack /p:Version=0.0.9 --configuration Release --force --output "%~dp0artifacts"
77
cd ..
8-
echo "Restore & Build API"
8+
echo "Restore & Build CLI"
99
cd ElectronNet.CLI
1010
dotnet restore
11-
dotnet build --configuration Release --force /property:Version=0.0.7
12-
dotnet pack /p:Version=0.0.7 --configuration Release --force --output "%~dp0artifacts"
11+
dotnet build --configuration Release --force /property:Version=0.0.9
12+
dotnet pack /p:Version=0.0.9 --configuration Release --force --output "%~dp0artifacts"

0 commit comments

Comments
 (0)