Thank you for your project, it's really awesome!
I have a small issue with detect code references. I'm using wpf localize extension https://github.com/SeriousM/WPFLocalizationExtension
it's strings might be found under different ways:
I have a small issue with detect code references. I'm using wpf localize extension https://github.com/SeriousM/WPFLocalizationExtension
it's strings might be found under different ways:
<Window xmlns:lex="http://wpflocalizeextension.codeplex.com"
lex:LocalizeDictionary.DesignCulture="en"
lex:ResxLocalizationProvider.DefaultAssembly="MyAssembly"
lex:ResxLocalizationProvider.DefaultDictionary="MyResource">
<Button Content="{lex:Loc Test}" />
<Button Content="{lex:Loc Key=Test}" />
</Window>
or <Button Content="{lex:Loc Test}" />
<Button Content="{lex:Loc Key=Test}" />
<Button Content="{lex:Loc MyAssembly:MyResource:Test}" />
<Button Content="{lex:Loc Test, Assembly=MyAssembly, Dict=MyResource}" />
<Button Content="{lex:Loc Key=Test, Assembly=MyAssembly, Dict=MyResource}" />
Do you think it would be possible to make code detect reference even with WPFLocalizationExtension?