8 references to NamespaceMappings
dotnet-svcutil-lib (8)
CommandProcessorOptions.cs (5)
644
using (var logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing {nameof(this.
NamespaceMappings
)}, count: {this.
NamespaceMappings
.Count}").ConfigureAwait(false))
646
if (this.
NamespaceMappings
.Count == 0)
652
this.
NamespaceMappings
.Add(new KeyValuePair<string, string>("*", clrNamespace));
658
var invalidNamespaces = this.
NamespaceMappings
.Where(nm => !CodeDomHelpers.IsValidNameSpace(nm.Value));
ImportModule.cs (3)
223
foreach (KeyValuePair<string, string> namespaceMapping in options.
NamespaceMappings
)
323
foreach (KeyValuePair<string, string> namespaceMapping in options.
NamespaceMappings
)
348
importOptions.ClrNamespace = options.
NamespaceMappings
.FirstOrDefault(m => m.Key == "*").Value;