diff --git a/Changelog.md b/Changelog.md index 29b61c8..e9b14c3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,19 @@ # not release + +# 0.0.11 + ElectronNET.CLI: * Invoke 'npm install' without --prod flag to install needed devDependencies as well. +* Enable SourceLink +* NuGet Package License Information updated (deprecation of licenseUrl) + +ElectronNET.API: + +* Documentation added for WebContents.GetUrl() +* Enable SourceLink +* NuGet Package License Information updated (deprecation of licenseUrl) # 0.0.10 diff --git a/ElectronNET.API/ElectronNET.API.csproj b/ElectronNET.API/ElectronNET.API.csproj index 0358002..45cdb82 100644 --- a/ElectronNET.API/ElectronNET.API.csproj +++ b/ElectronNET.API/ElectronNET.API.csproj @@ -1,4 +1,4 @@ - + netcoreapp2.1 @@ -8,15 +8,17 @@ Gregor Biswanger, Robert Muehsig Electron.NET - https://github.com/ElectronNET/Electron.NET/blob/master/LICENSE + MIT https://github.com/ElectronNET/Electron.NET/ Building cross platform electron based desktop apps with .NET Core and ASP.NET NET Core. This package contains the API to access the "native" electron API. https://github.com/ElectronNET/Electron.NET/ + git + true electron aspnetcore Changelog: https://github.com/ElectronNET/Electron.NET/blob/master/Changelog.md https://raw.githubusercontent.com/ElectronNET/Electron.NET/master/assets/images/electron.net-logo-square.png - 1.0.0.2 + 1.0.0.0 @@ -40,6 +42,10 @@ This package contains the API to access the "native" electron API. + + all + runtime; build; native; contentfiles; analyzers + diff --git a/ElectronNET.API/WebContents.cs b/ElectronNET.API/WebContents.cs index 766887b..f56b2a7 100644 --- a/ElectronNET.API/WebContents.cs +++ b/ElectronNET.API/WebContents.cs @@ -132,6 +132,11 @@ namespace ElectronNET.API return taskCompletionSource.Task; } + /// + /// Is used to get the Url of the loaded page. + /// It's usefull if a web-server redirects you and you need to know where it redirects. For instance, It's useful in case of Implicit Authorization. + /// + /// URL of the loaded page public Task GetUrl() { var taskCompletionSource = new TaskCompletionSource(); diff --git a/ElectronNET.CLI/ElectronNET.CLI.csproj b/ElectronNET.CLI/ElectronNET.CLI.csproj index 1af207f..c7fc328 100644 --- a/ElectronNET.CLI/ElectronNET.CLI.csproj +++ b/ElectronNET.CLI/ElectronNET.CLI.csproj @@ -9,15 +9,17 @@ true ..\artifacts ElectronNET.CLI - 1.0.4.2 + 1.0.0.0 Gregor Biswanger, Robert Muehsig Electron.NET Building cross platform electron based desktop apps with .NET Core and ASP.NET NET Core. This package contains the dotnet tooling to electronize your application. - https://github.com/ElectronNET/Electron.NET/blob/master/LICENSE + MIT https://github.com/ElectronNET/Electron.NET/ https://github.com/ElectronNET/Electron.NET/ + git + true electron aspnetcore Changelog: https://github.com/ElectronNET/Electron.NET/blob/master/Changelog.md https://raw.githubusercontent.com/ElectronNET/Electron.NET/master/assets/images/electron.net-logo-square.png @@ -76,6 +78,13 @@ This package contains the dotnet tooling to electronize your application. + + + + all + runtime; build; native; contentfiles; analyzers + + diff --git a/buildReleaseNuGetPackages.cmd b/buildReleaseNuGetPackages.cmd index f235568..8a2c091 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.10 -dotnet pack /p:Version=0.0.10 --configuration Release --force --output "%~dp0artifacts" +dotnet build --configuration Release --force /property:Version=0.0.11 +dotnet pack /p:Version=0.0.11 --configuration Release --force --output "%~dp0artifacts" cd .. echo "Restore & Build CLI" cd ElectronNet.CLI dotnet restore -dotnet build --configuration Release --force /property:Version=0.0.10 -dotnet pack /p:Version=0.0.10 --configuration Release --force --output "%~dp0artifacts" +dotnet build --configuration Release --force /property:Version=0.0.11 +dotnet pack /p:Version=0.0.11 --configuration Release --force --output "%~dp0artifacts"