Install() public method

public Install ( string packageToken, string acceptedVersions ) : bool
packageToken string
acceptedVersions string
return bool
Esempio n. 1
0
 private void install(string[] args)
 {
     var useGlobal = globalSpecified(ref args);
     var installer = new Installer(_token, _sourcePrioritization, _dispatch, _locator());
     installer.UseGlobalProfiles(useGlobal);
     installer.Install(args[1]);
     _dispatch("event|builtin package installed \"" + args[1] + "\"");
 }