Пример #1
0
        public static int Main(string[] args)
        {
            ICliHost cliHost = new CliHostBuilder()
                               .RegisterByAttribute()
                               .Build();

            return(cliHost.Run(args));
        }
Пример #2
0
        static async Task <int> Main(string[] args)
        {
#if DEBUG
            args.PauseIfDebug();
#endif
            //init host
            var host = new CliHostBuilder(args)
                       .Build <BuildArgs>(switchMappings => switchMappings.AddRange(BuildArgsHydrator.KeyMappings), true, () => new AutoFromConfigHydrator <BuildArgs>(), () => new BuildArgsHydrator());

            //run build
            return(await host.RunAsync($"Build {host.Args.SolutionDir.Name}", async (config, log) =>
            {
                var result = await new BuildStepDispatcher().DispatchAsync(host, host.Args).ConfigureAwait(false);
                //set output variables
                if (AzureDevOpsConsoleLogTarget.EnvironmentIsAzureDevOpsHostedAgent())
                {
                    log.Raw($"##vso[task.setvariable variable={nameof(host.Args.ReleaseArtifactsDir)}]{host.Args.ReleaseArtifactsDir.FullName()}");
                }

                return result;
            }).ConfigureAwait(false));
        }
Пример #3
0
        static async Task <int> Main(string[] args)
        {
#if DEBUG
            args.PauseIfDebug();
#endif
            //init host
            var host = new CliHostBuilder(args)
                       .Build(mappings =>
            {
                mappings.Add("path", _rootDirFlag);
                mappings.Add("dir", _rootDirFlag);
                mappings.Add("d", _rootDirFlag);
                mappings.Add("noChangeLogLevel", _noChangesLogLevelFlag);
            });

            //init root dir
            var rootDir = host[_rootDirFlag, 0]?.ToDir(); //try full name with fallback to first arg
            if (rootDir == null)                          //root dir not set
            {
                host.Log.Error($"{_rootDirFlag} parameter not set.");
                return((int)HttpStatusCode.BadRequest);
            }

            if (rootDir.Exists())
            {
                host.Log.Debug($"Root Directory Dir Set: {rootDir.FullName()}");
            }
            else
            {
                host.Log.Error($"Root Directory Not Found: {rootDir.FullName()}");
                return((int)HttpStatusCode.NotFound);
            }

            if (host.Environments.None())
            {
                host.Log.Error($"No Environments specified");
                return((int)HttpStatusCode.BadRequest);
            }

            var noChangesLogLevel = LogLevel.Warning;

            if (host.IsSet(_noChangesLogLevelFlag))
            {
                if (host[_noChangesLogLevelFlag].IsEnum <LogLevel>())
                {
                    noChangesLogLevel = host[_noChangesLogLevelFlag].ToEnum <LogLevel>();
                }
                else
                {
                    var logLevels = ((LogLevel[])Enum.GetValues(typeof(LogLevel))).Select(val => val.ToName()).JoinString();
                    host.Log.Error($"LogLevel for no changes not supported: {host[_noChangesLogLevelFlag]}. Valid values [{logLevels}]");
                    return((int)HttpStatusCode.BadRequest);
                }
            }

            //run build
            return(await host.RunAsync($"Config Transform",
                                       (config, log) =>
            {
                var dispatcher = new ConfigFileTransformDispatcher(host.Log);
                if (dispatcher.Transform(rootDir, noChangesLogLevel, host.Environments.ToArray()))
                {
                    return Task.FromResult(0);
                }
                throw new CliException($"Config Transform failed. See log for details");
            }).ConfigureAwait(false));
        }