1 write to Verbosity
dotnet-svcutil-lib (1)
CommandProcessorOptions.cs (1)
265this.Verbosity = Svcutil.Verbosity.Normal;
7 references to Verbosity
dotnet-svcutil-lib (7)
CommandProcessorOptions.cs (6)
47public bool KeepBootstrapDir { get { return this.Verbosity == Svcutil.Verbosity.Debug || DebugUtils.KeepTemporaryDirs; } } 263if (!this.Verbosity.HasValue) 282debugLooger.EnableTracing = this.EnableLoggingMarkup == true || this.Verbosity == Svcutil.Verbosity.Debug; 321Debug.Assert(this.Verbosity.HasValue, $"{nameof(Verbosity)} is not initialized!"); 861foreach (Type type in TypeLoader.LoadTypes(assembly, this.Verbosity.Value))
ToolConsole.cs (1)
33Verbosity = options.Verbosity.Value;