What would you like to be added:
dynamically rename xmlns if different urls shares the same xmlns:
- file1.xaml:
xmlns:local="using:Something.This"
- file2.xaml:
xmlns:local="using:Something.That"
the rename should cover:
- node name:
<local:MyControl />
- certain attribute values:
mc:Ignorable
- [Style or ControlTemplate].TargetType
- Binding.Path:
<TextBlock Text="{Binding Path=(ext:MyExtensions.SomeProperty)}" />
with options to omit/override specific xmlns for edge-case scenarios: (like uno-reserved xmlns: win, not_win, ios, etc...)
What would you like to be added:
dynamically rename xmlns if different urls shares the same xmlns:
xmlns:local="using:Something.This"xmlns:local="using:Something.That"the rename should cover:
<local:MyControl />mc:Ignorable<TextBlock Text="{Binding Path=(ext:MyExtensions.SomeProperty)}" />with options to omit/override specific xmlns for edge-case scenarios: (like uno-reserved xmlns:
win,not_win,ios, etc...)