Skip to content

Commit 8c171ba

Browse files
committed
0.0.10
1 parent c1bd48b commit 8c171ba

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

Changelog.md

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

3+
# 0.0.10
4+
5+
ElectronNET.API:
6+
7+
* manifestJsonFilePath fixed (thanks @smack0007)
8+
* Use Electron release 2.0.2 and updated packages (thanks @deinok)
9+
* fixes for Socket interaction (thanks @mojinxun)
10+
* Fixing SingleInstances (thanks @yaofeng)
11+
* Enhance WebContent.GetUrl (thanks @ru-sh)
12+
13+
ElectronNET.CLI:
14+
15+
* Show Resultcode for better debugging when using Build/Start Command
16+
* ElectronNET.CLI is now a global dotnet tool
17+
318
# 0.0.9
419

520
ElectronNET.API:

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,19 @@ __Please note:__ Currently it is important to use ASP.NET Core with MVC. If you
8484

8585
## Start the Application
8686

87-
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:
87+
To start the application make sure you have installed the "[ElectronNET.CLI](https://www.nuget.org/packages/ElectronNET.CLI/)" packages as global tool:
88+
89+
dotnet tool install ElectronNET.CLI -g
90+
91+
### ElectronNET.CLI Version 0.0.9
92+
93+
In the Version 0.0.9 the CLI was not a global tool and needed to be registred like this in the .csproj:
8894

8995
```
9096
<ItemGroup>
9197
<DotNetCliToolReference Include="ElectronNET.CLI" Version="0.0.9" />
9298
</ItemGroup>
9399
```
94-
Be aware of the version: The current version of the CLI is 0.0.9.
95100

96101
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:
97102

buildReleaseNuGetPackages.cmd

Lines changed: 4 additions & 4 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.9
6-
dotnet pack /p:Version=0.0.9 --configuration Release --force --output "%~dp0artifacts"
5+
dotnet build --configuration Release --force /property:Version=0.0.10
6+
dotnet pack /p:Version=0.0.10 --configuration Release --force --output "%~dp0artifacts"
77
cd ..
88
echo "Restore & Build CLI"
99
cd ElectronNet.CLI
1010
dotnet restore
11-
dotnet build --configuration Release --force /property:Version=0.0.9
12-
dotnet pack /p:Version=0.0.9 --configuration Release --force --output "%~dp0artifacts"
11+
dotnet build --configuration Release --force /property:Version=0.0.10
12+
dotnet pack /p:Version=0.0.10 --configuration Release --force --output "%~dp0artifacts"

0 commit comments

Comments
 (0)