VS2015 SP3 remote debugging illegal characters in transit

After upgrading Visual Studio 2015 to version 3, remote debugging stops working. When trying to debug, an error occurs:

Severity Code Description Project File Line Suppression State Error DEP4300: Failed to create root folder for application package xxx | VS.Debug_x86.xxx | CN = xx | xxxxxx.Debug_x86.xxx with the base layout of the folder C: \ Users \ xxxx. Invalid characters on the way.

+4
source share
3 answers

Visual Studio 2015 Remote Debugger Tool must be loaded on the remote device, allowing remote debugging. This tool is different from Visual Studio versions. Therefore, after updating Visual Studio, you must also update the remote debugger tool on the remote device. The tool is usually located in the directory: C: \ Program Files (x86) \ Microsoft Visual Studio 14.0 \ Common7 \ IDE \ Remote Debugger

+4
source

2 Windows, .

" " → "", : 14.0.25420.1, : D14REL, VS2015 3.

0

Remote Tool Update 3 MSDN (@wblanks - , , , , MSDN ).

, ​​ Visual Studio 2015 Update 3 .

In the folder C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Remote DebuggerI found version msvsmon.exe14.0.25420. I copied the entire contents of the folder Remote Debuggerto a folder Remote Debuggeron my tablet, where I initially installed Remote Tools for VS 2015, Update 1. After that I restarted the Remote Debugger application on the tablet and when I tried to deploy my application remotely from Visual Studio 2015 running on my machine development, I no longer have the DEP4300 error.

-1
source

Source: https://habr.com/ru/post/1649784/


All Articles