From 15ba091bbff50784fd4298b38f4230f3aba22934 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Sep 2021 08:45:52 +0100 Subject: [PATCH] Automated dotnet-format update (#2625) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/Controls/src/Xaml/XmlTypeXamlExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controls/src/Xaml/XmlTypeXamlExtensions.cs b/src/Controls/src/Xaml/XmlTypeXamlExtensions.cs index 65caf87ff394..39b0188870ad 100644 --- a/src/Controls/src/Xaml/XmlTypeXamlExtensions.cs +++ b/src/Controls/src/Xaml/XmlTypeXamlExtensions.cs @@ -78,7 +78,7 @@ static class XmlTypeXamlExtensions var potentialTypes = new List<(string typeName, string clrNamespace, string assemblyName)>(); foreach (string typeName in lookupNames) foreach (XmlnsDefinitionAttribute xmlnsDefinitionAttribute in lookupAssemblies) - potentialTypes.Add(new (typeName, xmlnsDefinitionAttribute.ClrNamespace, xmlnsDefinitionAttribute.AssemblyName)); + potentialTypes.Add(new(typeName, xmlnsDefinitionAttribute.ClrNamespace, xmlnsDefinitionAttribute.AssemblyName)); T? type = null; foreach (var typeInfo in potentialTypes)