我对 dotfuscor 有疑问。我正在使用具有本地化功能的应用程序,并绑定如下数据:
Text="{Binding Path=Localizedresources.Foo, Source={StaticResource LocalizedStrings}}"
或者
Header="{Binding Localizedresources.Today, Mode=OneWay}" DataContext="{StaticResource LocalizedStrings}"
问题是,dotfuscator 不喜欢这个,我收到消息,例如:
XamlAnalysis flagged something in Resource Main.g.resources\mainpage.xaml at (111, 55) for the following reasons: Binding expression {Binding Localizedresources.Today, Mode=OneWay} :Could not resolve, may have to manually exclude.
但我不知道如何修复它,甚至不知道如何排除它,因为我不知道错误在哪一步就像“字符串加密”。
如何解决这个问题?