예제 #1
0
        public void CreateShortcutsForExecutable(string exeName, ShortcutLocation locations, bool updateOnly, string programArguments = null,
                                                 string icon = null)
        {
            var installHelpers = new ApplyReleasesImpl(RootAppDirectory);

            installHelpers.CreateShortcutsForExecutable(exeName, locations, updateOnly, programArguments, icon);
        }
예제 #2
0
 public void CreateShortcutsForExecutable(string exeName, ShortcutLocation locations, bool updateOnly)
 {
     var installHelpers = new ApplyReleasesImpl(applicationName, rootAppDirectory);
     installHelpers.CreateShortcutsForExecutable(exeName, locations, updateOnly);
 }
예제 #3
0
        public void CreateShortcutsForExecutable(string exeName, ShortcutLocation locations, bool updateOnly)
        {
            var installHelpers = new ApplyReleasesImpl(applicationName, rootAppDirectory);

            installHelpers.CreateShortcutsForExecutable(exeName, locations, updateOnly);
        }
예제 #4
0
 public void CreateShortcutsForExecutable(string exeName, ShortcutLocation locations, bool updateOnly, string programArguments = null, string icon = null)
 {
     var installHelpers = new ApplyReleasesImpl(rootAppDirectory);
     installHelpers.CreateShortcutsForExecutable(exeName, locations, updateOnly, programArguments, icon);
 }