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