远程调试MAUI程序

在远程电脑上调试MAUI程序

  1. 将远程调试程序拷贝到目标电脑

    远程调试程序在vs安装文件夹Remote Debugger下面。
    以vs2022为例路径为C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\IDE

  2. 在目标电脑运行远程调试程序

    根据程序的类型选择x64x86文件夹的程序。
    配置程序:工具\选项,无身份验证、勾选允许任何用户进行调试。
    2a2102346c794b74905f88729237b259.png

  3. 在开发端电脑的vs中添加配置

    修改Properties\launchSettings.json文件,添加以下内容:

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    
    "profiles": {
      "Windows Machine": {
        "commandName": "MsixPackage",
        "nativeDebugging": false
      },
      // new profile
      "Remote Profile": {
        "commandName": "MsixPackage",
        "remoteDebugEnabled": true,
        "remoteDebugMachine": "192.168.1.168", // remote client
        "authenticationMode": "None"
      }
    }
    
  4. 在vs中选择启动选项

    在工具栏选择远程启动选项。
    d2957b5667525df12e8eb3647cb42ea4.png

参考:https://github.com/ligf/Examples/blob/master/MauiAppExample/Properties/launchSettings.json

Licensed under CC BY-NC-SA 4.0