protected override void RunTool()
        {
            var tool = new TfxExtensionInstallRunner(FileSystem, Environment, ProcessRunner, Tools);

            tool.Install(VsixFilePath, Accounts, Settings);
        }
Example #2
0
        public static void TfxExtensionInstall(this ICakeContext context, FilePath vsixFilePath, ICollection <string> accounts, TfxExtensionInstallSettings settings)
        {
            var runner = new TfxExtensionInstallRunner(context.FileSystem, context.Environment, context.ProcessRunner, context.Tools);

            runner.Install(vsixFilePath, accounts, settings);
        }