如何在运行时应用代码更改而不中断执行

发布于 2024-09-10 10:14:44 字数 194 浏览 0 评论 0原文

我在 Visual Studio 2008 中,正在开发一个非常庞大的项目,当它在调试中运行时,需要花费大量时间来构建,并且我做了一些代码更改,我希望它在运行时合并这些代码更改。我确实明白这并不总是可能的,但在某些情况下是可能的。

我确实知道,当我使用断点中断执行,然后添加代码,然后再次介入时,它会应用代码更改,但我希望它在不中断执行的情况下应用代码更改。

I am in visual studio 2008 and working on a very huge project which takes alot of time to build now when it is running in debug and i make some code changes i want it to incorporate those code changes at run Time. i do understand that this will not be always possible but in some situation it is.

I do know that when i break the execution using break point and then add code then step in again it applies code changes but i want it to apply code changes without breaking execution.

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

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

发布评论

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

评论(1

习惯成性 2024-09-17 10:14:44

我认为没有办法做你想做的事。

我在我的 asp.net 应用程序中使用以下技巧来执行我的代码更改。

  • 从 ide 中解除 w3p 进程(Go Debug > Deatach all)
  • 在代码中进行更改
  • 重建代码
  • 使用 ide 再次附加进程(Go Debug > Attach process>)

I think there no way to do the thing you want.

I use following trick in my asp.net application to execute my code change.

  • Deatach w3p process from ide ( Go Debug > Deatach all)
  • Make changes in code
  • Rebuild code
  • Attach process again with ide ( Go Debug > attach process>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文