如何清除工作流设计器的缓存(它在哪里缓存内容)?
每次我更改 CodeActivity
的某些 InArgument
或定义为 XOML 的活动时,都需要重新启动 Visual Studio 几次并删除项目 dll 的所有痕迹硬盘驱动器(不确定哪个部分实际工作),直到更改反映在工作流设计器中。
是否有某种方法可以清除工作流设计器/Visual Studio 的缓存,以便立即反映我对活动所做的更改?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定问题是什么。通常我所要做的就是重新编译程序集,设计器仍然打开,将看到更改。
Not sure what the problem is. Normally all I have to do is recompile the assembly and the designer, still open, will see the changes.
最后我找到了原因:我碰巧将项目的dll部署到Visual Studio IDE的PrivateAssemblies文件夹中,这在某种程度上让设计者感到困惑。删除后重建就像以前一样..
Finally I have found the reason : I happened to deploy the dll of my project into the PrivateAssemblies folder of visual studio IDE, that has somehow confused the designer. After removing it rebuild works as before..