diff --git a/ElectronNET.API/ElectronNET.API.csproj b/ElectronNET.API/ElectronNET.API.csproj
index 9a60206..65c5836 100644
--- a/ElectronNET.API/ElectronNET.API.csproj
+++ b/ElectronNET.API/ElectronNET.API.csproj
@@ -16,6 +16,15 @@ 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
+
+
+
+ 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
+
+
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();