7 references to s_microsoftCodeDom
dotnet-svcutil-lib (7)
CodeDomFixup\CodeDomVisitors\NamespaceFixer.cs (7)
38
if (type.FullName.Contains(
s_microsoftCodeDom
))
52
if (attr.Name.Contains(
s_microsoftCodeDom
) && _codeDomTypes.ContainsKey(attr.Name))
54
attr.Name = attr.Name.Replace(
s_microsoftCodeDom
, s_systemCodeDom);
65
if (comment.Text.Contains(
s_microsoftCodeDom
) && _codeDomTypes.ContainsKey(comment.Text))
67
comment.Text = comment.Text.Replace(
s_microsoftCodeDom
, s_systemCodeDom);
78
if (typeref.BaseType.Contains(
s_microsoftCodeDom
) && _codeDomTypes.ContainsKey(typeref.BaseType))
80
typeref.BaseType = typeref.BaseType.Replace(
s_microsoftCodeDom
, s_systemCodeDom);