重新编译 XAML(工作流程)而不重新打开文件

发布于 2024-10-31 13:08:30 字数 276 浏览 0 评论 0原文

如果我重构工作流中依赖的类型名称、枚举或常量,Visual Studio 解决方案将进行编译,而不会显示任何错误。但是,如果我重新打开工作流 XAML,则会重新编译它,并在错误窗口中显示相应的错误。

我有 30 多个工作流程 - 这使得重构有些困难,因为我必须在将工作提交到源代码管理之前打开并检查每个工作流程中的错误。

是否有办法强制 Visual Studio 重新编译解决方案中的所有 XAML 文件而不手动打开它们? (类似于 MVC 中的属性?

问候

Warren

If I re-factor a type name, enum or constant that is relied upon within a workflow, the Visual Studio solution will compile without displaying any errors. However, if I re-open the workflow XAML, it is re-compiled and the appropriate error(s) displays in the error window.

I have 30+ workflows - this makes re-factoring somewhat difficult as I have to open and check for errors in each workflow before committing my work to source control.

Is there anyway to FORCE Visual Studio to re-compile all XAML files in the solution without opening them manually? (something similar to property in MVC?

Regards

Warren

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩起发的微风 2024-11-07 13:08:30

XAML 文件并未真正编译。相反,它们作为资源嵌入,并生成一个包装器类型,该包装器类型将 XAML 作为资源从程序集中加载。因此,XAML 中的错误不会阻止项目编译,只会在运行时出现。

XAML files aren't really compiled. Instead they are embedded as a resource and a wrapper type is generated that loads the XAML as a resource from the assembly. As a result errors in the XAML don't stop the project from compiling and only show up at runtime.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文