admin管理员组文章数量:1344448
A customer currently running an older version of an app experienced an error after successfully upgrading the software: Could not load file or assembly Microsoft.Xaml.Behaviors
. However, this assembly was not referenced explicitly anywhere in the codebase, through Nuget or namespace in wpf xaml or code behind or Directory.Packages.props
. It might be a transitive dependency, but I used asmspy in the output directory and got no results for dependencies on this assembly. I cannot reproduce this error, every time I rebuild and reinstall the software System.Windows.Interactivity.dll
is correctly placed in the output dir, which is the expected behavior.
Someone mentioned that local environment settings may cause the code that references Interactivity
:
<Window
...
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity">
...
<i:Interaction.Behaviors>
<shared:ApplicationItemViewBehavior />
</i:Interaction.Behaviors>
to accidentally resolve to Microsoft.Xaml.Behaviors
instead, causing the post-upgrade version of the software to be calling Behaviors
instead (which of course is not found). Is this a reasonable thing that can happen? I can't think of any other way Behaviors
would be introduced. The target framework is 472.
本文标签: cSystemWindowsInteractivity reference resolving to MicrosoftXamlBehaviorsStack Overflow
版权声明:本文标题:c# - System.Windows.Interactivity reference resolving to Microsoft.Xaml.Behaviors - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801460a2541391.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论