From 8c171ba948f4e5aaf63117297759f2ae50b491f8 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Wed, 5 Dec 2018 22:40:06 +0100 Subject: [PATCH] 0.0.10 --- Changelog.md | 15 +++++++++++++++ README.md | 9 +++++++-- buildReleaseNuGetPackages.cmd | 8 ++++---- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/Changelog.md b/Changelog.md index 1d3eea1..46681ca 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,20 @@ # not release +# 0.0.10 + +ElectronNET.API: + +* manifestJsonFilePath fixed (thanks @smack0007) +* Use Electron release 2.0.2 and updated packages (thanks @deinok) +* fixes for Socket interaction (thanks @mojinxun) +* Fixing SingleInstances (thanks @yaofeng) +* Enhance WebContent.GetUrl (thanks @ru-sh) + +ElectronNET.CLI: + +* Show Resultcode for better debugging when using Build/Start Command +* ElectronNET.CLI is now a global dotnet tool + # 0.0.9 ElectronNET.API: diff --git a/README.md b/README.md index faeb837..81bff66 100644 --- a/README.md +++ b/README.md @@ -84,14 +84,19 @@ __Please note:__ Currently it is important to use ASP.NET Core with MVC. If you ## Start the Application -For the tooling you will need your dotnet-electronize package [ElectronNET.CLI NuGet package](https://www.nuget.org/packages/ElectronNET.CLI/). This package __must__ be referenced in the .csproj like this: +To start the application make sure you have installed the "[ElectronNET.CLI](https://www.nuget.org/packages/ElectronNET.CLI/)" packages as global tool: + + dotnet tool install ElectronNET.CLI -g + +### ElectronNET.CLI Version 0.0.9 + +In the Version 0.0.9 the CLI was not a global tool and needed to be registred like this in the .csproj: ``` ``` -Be aware of the version: The current version of the CLI is 0.0.9. After you edited the .csproj-file, you need to restore your NuGet packages within your Project. Run the follwoing command in your ASP.NET Core folder: diff --git a/buildReleaseNuGetPackages.cmd b/buildReleaseNuGetPackages.cmd index 7a1995d..f235568 100644 --- a/buildReleaseNuGetPackages.cmd +++ b/buildReleaseNuGetPackages.cmd @@ -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.9 -dotnet pack /p:Version=0.0.9 --configuration Release --force --output "%~dp0artifacts" +dotnet build --configuration Release --force /property:Version=0.0.10 +dotnet pack /p:Version=0.0.10 --configuration Release --force --output "%~dp0artifacts" cd .. echo "Restore & Build CLI" cd ElectronNet.CLI dotnet restore -dotnet build --configuration Release --force /property:Version=0.0.9 -dotnet pack /p:Version=0.0.9 --configuration Release --force --output "%~dp0artifacts" +dotnet build --configuration Release --force /property:Version=0.0.10 +dotnet pack /p:Version=0.0.10 --configuration Release --force --output "%~dp0artifacts"