Example #1
0
        private void InstallRuntime(CommandLineApplication runtime)
        {
            var argVersion = runtime.Argument("version",
                                              $"Version of the shared framework to install. Defaults to '{RuntimeAsset.DefaultVersion}'.");

/*
 *          TODO support architecture-specific assets
 *          var optArch = runtime.Option("-a|--arch",
 *                  $"Processor architecture of the runtime. Accepted values: x86, x64. Defaults to {defaultArch}");
 */

            var optSave = runtime.Option("--save",
                                         $"Save to the 'runtime' version of the '{FileConstants.Config}' config file.", CommandOptionType.NoValue);

            runtime.OnExecute(() =>
            {
                var version = argVersion.Value ?? RuntimeAsset.DefaultVersion;

                ICommand install = new InstallRuntimeCommand(version, Architecture.X64);

                if (optSave.HasValue())
                {
                    install = CommonCommands.Sequence(
                        CommonCommands.EnsureConfigFileExists,
                        install,
                        new EditConfigCommand(c => c.Runtimes.Add(version)));
                }

                this.Command = install;
            });
        }
Example #2
0
        private void InstallSdk(CommandLineApplication sdk)
        {
            var argVersion = sdk.Argument("version", $"Version of the .NET Core SDK to install. Defaults to '{SdkAsset.DefaultVersion}'.");
            var optSave    = sdk.Option("--save", $"Save as the value of 'sdk' in the '{FileConstants.Config}' config file.", CommandOptionType.NoValue);

            sdk.OnExecute(() =>
            {
                var version      = argVersion.Value ?? SdkAsset.DefaultVersion;
                ICommand install = new InstallSdkCommand(version, Architecture.X64);
                if (optSave.HasValue())
                {
                    install = CommonCommands.Sequence(
                        CommonCommands.EnsureConfigFileExists,
                        install,
                        new EditConfigCommand(c => c.Sdk = version));
                }

                this.Command = install;
            });
        }
Example #3
0
        private void InstallTool(CommandLineApplication tool)
        {
            var argName    = tool.Argument("name", $"Name of the tool. Required.");
            var argVersion = tool.Argument("version", $"The version of the tool. Defaults to '{ToolAsset.DefaultVersion}'.");
            var optSave    = tool.Option(
                "--save", $"Save the tool to the 'tools' in the '{FileConstants.Config}' config file.",
                CommandOptionType.NoValue);

            tool.OnExecute(() =>
            {
                var name         = argName.IfNotNullOrEmpty();
                var version      = argVersion.Value ?? ToolAsset.DefaultVersion;
                ICommand install = new InstallToolCommand(name, version);
                if (optSave.HasValue())
                {
                    install = CommonCommands.Sequence(
                        CommonCommands.EnsureConfigFileExists,
                        install,
                        new EditConfigCommand(c => c.Tools[name.ToLowerInvariant()] = version));
                }

                this.Command = install;
            });
        }