8 references to NamespaceMappings
dotnet-svcutil-lib (8)
CommandProcessorOptions.cs (5)
645
using (var logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing {nameof(this.
NamespaceMappings
)}, count: {this.
NamespaceMappings
.Count}").ConfigureAwait(false))
647
if (this.
NamespaceMappings
.Count == 0)
653
this.
NamespaceMappings
.Add(new KeyValuePair<string, string>("*", clrNamespace));
659
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;