Remote deploy/debug Visual Studio 2017 .NET Core

35,656

Solution 1

  1. On your remote machine, go to https://visualstudio.microsoft.com/en/downloads/#remote-tools-for-visual-studio-2017 to download and install the remote debugging tools.
  2. Run the "Visual Studio 2017 Remote Debugger" application you just installed
  3. The app will show you the servername and port in the main window; something like 'COMPUTERNAME:4022'
  4. In Visual Studio on your development machine, choose "Remote Machine" as the run target. This should bring up a dialog box to enter in the remote machine information.
  5. If you see your machine listed under "Auto Detected", select it. If not, use the servername and port you found in step 3 in the manual section.
  6. You should be able to "hit play" with "Remote Machine" selected and it will deploy the app to the remote machine and allow you to debug (it may ask for a username and password to the remote machine).

Solution 2

Head to this page: https://www.visualstudio.com/downloads/

Find the Tools for Visual Studio 2017 section downloads and download the Remote Tools for Visual Studio 2017 version for your server

After installation completes, launch Visual Studio 2017 Remote Debugger and configure port for it, you also need to configure your endpoints to your server.

Next step, go to your computer(Visual Studio 2017), On Debug Menu, click to attach the debugger to process. Enter your server and port (server.com:port) and refresh the list of process, it will require user and password, mark Show process from all users. Find w3wp.exe and attach to it.

More Complete information: https://docs.microsoft.com/en-us/visualstudio/debugger/remote-debugging

Share:
35,656
Mardoxx
Author by

Mardoxx

...

Updated on August 01, 2020

Comments

  • Mardoxx
    Mardoxx almost 4 years

    How can I set up remote deploy + debugging in VS2017 using a net core app which targets net framework?

    I have the remote tools installed and working on my target device. I can connect to it and debug remote applications.

    I have a build configuration set to build my application to a remote share on my target machine.

    How can I get VS to launch this on the remote machine then attach debugger?