Click here to Skip to main content
15,888,025 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I've been remote debugging on client A and now I want to debug on client B, but I can't figure out how to force the dialog where you choose.

Can anyone advise?
Posted

1 solution

The setting can be found in the Debug panel of the project's settings. It can also be changed in the .csproj.user file:

XML
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
    <RemoteDebugMachine>127.0.0.1 (howard)</RemoteDebugMachine>
    <UseAuthentication>True</UseAuthentication>
    <RemoteDebugEnabled>true</RemoteDebugEnabled>
    <UseSimulator>False</UseSimulator>
  </PropertyGroup>
</Project>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900