Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix usage
  • Loading branch information
robertmuehsig committed Feb 11, 2018
1 parent a1aaabd commit 92087bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ElectronNET.CLI/Commands/BuildCommand.cs
Expand Up @@ -31,11 +31,11 @@ public Task<bool> ExecuteAsync()
SimpleCommandLineParser parser = new SimpleCommandLineParser();
parser.Parse(_args);
var desiredPlatform = parser.Arguments["/target"][0];
var desiredPlatform = parser.Arguments["target"][0];
string specifiedFromCustom = string.Empty;
if (desiredPlatform == "custom" && parser.Arguments["/target"].Length > 1)
if (desiredPlatform == "custom" && parser.Arguments["target"].Length > 1)
{
specifiedFromCustom = parser.Arguments["/target"][1];
specifiedFromCustom = parser.Arguments["target"][1];
}
var platformInfo = GetTargetPlatformInformation.Do(desiredPlatform, specifiedFromCustom);
Expand Down
4 changes: 3 additions & 1 deletion ElectronNET.sln
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2002
VisualStudioVersion = 15.0.27130.2024
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ElectronNET.WebApp", "ElectronNET.WebApp\ElectronNET.WebApp.csproj", "{7C048379-401C-4345-B5E7-BE232DEA8157}"
EndProject
Expand Down Expand Up @@ -32,6 +32,8 @@ Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "ElectronNET.Host", "Electro
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{2914CCF7-27C2-42AE-849A-2F0C1BC7CDFA}"
ProjectSection(SolutionItems) = preProject
buildAll.cmd = buildAll.cmd
buildAll.sh = buildAll.sh
buildReleaseNuGetPackages.cmd = buildReleaseNuGetPackages.cmd
EndProjectSection
EndProject
Expand Down

0 comments on commit 92087bc

Please sign in to comment.