Skip to content

Commit

Permalink
fix(intellisense): Add missing XmlnsDefinition for Automation namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored Oct 14, 2023
1 parent 770f868 commit 023117e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Uno.UI/XmlnsDefinitionAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
[assembly: Microsoft.UI.Xaml.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", Microsoft.UI.Xaml.XamlConstants.Namespaces.Media)]
[assembly: Microsoft.UI.Xaml.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", Microsoft.UI.Xaml.XamlConstants.Namespaces.MediaAnimation)]
[assembly: Microsoft.UI.Xaml.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", Microsoft.UI.Xaml.XamlConstants.Namespaces.Shapes)]
[assembly: Microsoft.UI.Xaml.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", Microsoft.UI.Xaml.XamlConstants.Namespaces.Automation)]

[assembly: Microsoft.UI.Xaml.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml", "System")]
[assembly: Microsoft.UI.Xaml.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml", "System")]
Expand Down Expand Up @@ -59,6 +60,6 @@ internal static class Namespaces
public const string Media = BaseXamlNamespace + ".Media";
public const string MediaAnimation = BaseXamlNamespace + ".Media.Animation";
public const string Shapes = BaseXamlNamespace + ".Shapes";

public const string Automation = BaseXamlNamespace + ".Automation";
}
}

0 comments on commit 023117e

Please sign in to comment.