服务器远程调试
在不安装 VS 的情况下在服务器上远程调试 .NET 的最佳方法是什么?
what is the best way to remote debugging .NET on server without install VS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在不安装 VS 的情况下在服务器上远程调试 .NET 的最佳方法是什么?
what is the best way to remote debugging .NET on server without install VS?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您不需要在远程服务器上安装所有 VS。
VS 安装光盘包含一个名为 Remote Debugger 的目录,其中有两个文件夹(x64 和 x86),其中包含特定平台的设置应用程序。 这将安装远程调试监视器 (msvsmon.exe)。
当然,您的本地计算机上仍然需要 Visual Studio。
You don't need to install all of VS on the remote server.
The VS installation disc contains a directory called Remote Debugger, which has two folders (x64 and x86) that contain the set-up application for the specific platform. This installs the remote debugging monitor (msvsmon.exe).
Of course, you'll still need Visual Studio on your local machine.