Skip to content

Commit

Permalink
Restore old setupIcon flag
Browse files Browse the repository at this point in the history
This makes icon and setupIcon just aliases to the same variable
  • Loading branch information
anaisbetts committed Sep 8, 2015
1 parent f5feff5 commit 82aff6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Update/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ int executeCommandLine(string[] args)
{ "p=|packagesDir=", "Path to the NuGet Packages directory for C# apps", v => packagesDir = v},
{ "bootstrapperExe=", "Path to the Setup.exe to use as a template", v => bootstrapperExe = v},
{ "g=|loadingGif=", "Path to an animated GIF to be displayed during installation", v => backgroundGif = v},
{ "i=|icon", "Path to an ICO file that will be used for the Setup executable's icon", v => setupIcon = v},
{ "i=|icon", "Path to an ICO file that will be used for icon shortcuts", v => setupIcon = v},
{ "setupIcon", "Path to an ICO file that will be used for the Setup executable's icon", v => setupIcon = v},
{ "n=|signWithParams=", "Sign the installer via SignTool.exe with the parameters given", v => signingParameters = v},
{ "s|silent", "Silent install", _ => silentInstall = true},
{ "b=|baseUrl=", "Provides a base URL to prefix the RELEASES file packages with", v => baseUrl = v, true},
Expand Down

0 comments on commit 82aff6e

Please sign in to comment.