Beispiel #1
0
        protected ToolSettings()
        {
            var variables = EnvironmentInfo.GetVariables();

            EnvironmentVariablesInternal = new Dictionary <string, string>(variables, variables.Comparer);
            VerbosityMapping.Apply(this);
        }
Beispiel #2
0
        protected ToolSettings()
        {
            var variables = EnvironmentInfo.GetVariables();

            EnvironmentVariablesInternal = new Dictionary <string, string>(variables, variables.Comparer);
            LogOutput = true; // TODO: could be controlled by NukeBuild parameter
            VerbosityMapping.Apply(this);
        }
Beispiel #3
0
 protected ToolSettings()
 {
     ProcessEnvironmentVariablesInternal = EnvironmentInfo.Variables.ToDictionary(x => x.Key, x => x.Value);
     VerbosityMapping.Apply(this);
 }