From 25d3ec437912488ddba07e97f4090eb55b16caad Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Tue, 17 Oct 2017 23:37:39 +0200 Subject: [PATCH 1/3] img url --- ElectronNET.API/ElectronNET.API.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/ElectronNET.API/ElectronNET.API.csproj b/ElectronNET.API/ElectronNET.API.csproj index 16d0aa4..9aa25fe 100644 --- a/ElectronNET.API/ElectronNET.API.csproj +++ b/ElectronNET.API/ElectronNET.API.csproj @@ -16,6 +16,7 @@ This package contains the API to access the "native" electron API. electron aspnetcore #0.0.1 - alpha release + https://raw.githubusercontent.com/GregorBiswanger/Electron.NET/master/assets/images/electron.net-logo-square.png From 0caac0084cbc1a6dac806a6120177c5346185f3c Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Wed, 18 Oct 2017 22:43:57 +0200 Subject: [PATCH 2/3] include xml documentation see https://github.com/GregorBiswanger/Electron.NET/issues/5 --- ElectronNET.API/ElectronNET.API.csproj | 8 ++++++++ ElectronNET.CLI/ElectronNET.CLI.csproj | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/ElectronNET.API/ElectronNET.API.csproj b/ElectronNET.API/ElectronNET.API.csproj index 9aa25fe..b20c1e9 100644 --- a/ElectronNET.API/ElectronNET.API.csproj +++ b/ElectronNET.API/ElectronNET.API.csproj @@ -19,6 +19,14 @@ This package contains the API to access the "native" electron API. https://raw.githubusercontent.com/GregorBiswanger/Electron.NET/master/assets/images/electron.net-logo-square.png + + bin\Debug\netcoreapp2.0\ElectronNET.API.xml + + + + bin\Release\netcoreapp2.0\ElectronNET.API.xml + + diff --git a/ElectronNET.CLI/ElectronNET.CLI.csproj b/ElectronNET.CLI/ElectronNET.CLI.csproj index 1692636..c5826d5 100644 --- a/ElectronNET.CLI/ElectronNET.CLI.csproj +++ b/ElectronNET.CLI/ElectronNET.CLI.csproj @@ -29,6 +29,14 @@ This package contains the dotnet tooling to electronize your application. + + bin\Debug\netcoreapp2.0\ElectronNET.API.xml + + + + bin\Release\netcoreapp2.0\ElectronNET.API.xml + + From d3c2a365cd9df322dcb605f6382b63de37d75c86 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Wed, 18 Oct 2017 22:48:32 +0200 Subject: [PATCH 3/3] adding the init to the help page --- ElectronNET.CLI/Program.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ElectronNET.CLI/Program.cs b/ElectronNET.CLI/Program.cs index 76936e9..f7b23f4 100644 --- a/ElectronNET.CLI/Program.cs +++ b/ElectronNET.CLI/Program.cs @@ -86,6 +86,10 @@ namespace ElectronNET.CLI Console.WriteLine("\t"); Console.WriteLine($"\t{BuildCommand.COMMAND_NAME.PadRight(NAME_WIDTH)} {BuildCommand.COMMAND_DESCRIPTION}"); + Console.WriteLine("\t"); + Console.WriteLine("Commands to init the Electron Application:"); + Console.WriteLine("\t"); + Console.WriteLine($"\t{InitCommand.COMMAND_NAME.PadRight(NAME_WIDTH)} {InitCommand.COMMAND_DESCRIPTION}"); Console.WriteLine("\t"); Console.WriteLine("\t"); @@ -103,6 +107,9 @@ namespace ElectronNET.CLI case BuildCommand.COMMAND_NAME: PrintUsage(BuildCommand.COMMAND_NAME, BuildCommand.COMMAND_DESCRIPTION, BuildCommand.CommandOptions, BuildCommand.COMMAND_ARGUMENTS); break; + case InitCommand.COMMAND_NAME: + PrintUsage(InitCommand.COMMAND_NAME, InitCommand.COMMAND_DESCRIPTION, InitCommand.CommandOptions, InitCommand.COMMAND_ARGUMENTS); + break; default: Console.Error.WriteLine($"Unknown command {command}"); PrintUsage();