1. 程式人生 > >vscode 調試.net core 2.0 輸出亂碼解決方法

vscode 調試.net core 2.0 輸出亂碼解決方法

csp pre json acer core 亂碼 cer cor img

之前在vscode上調試.net core 2.0項目時輸出窗口一直是亂碼,查了很多資料無法解決

技術分享

最終在github找到了解決辦法 -> https://github.com/OmniSharp/omnisharp-vscode/issues/1775

 1 {
 2     "version": "0.1.0",
 3     "command": "dotnet",
 4     "isShellCommand": true,
 5     "args": [],
 6     "tasks": [
 7         {
 8             "taskName": "build",
9 "command": "cmd", 10 "suppressTaskName": true, 11 "args": [ 12 "/c chcp 65001 >nul && dotnet build ${workspaceRoot}/Maybe.csproj" 13 ], 14 "isBuildCommand": true, 15 "problemMatcher": "$msCompile" 16
} 17 ] 18 }

修改Task.json配置文件可解決此問題

技術分享

vscode 調試.net core 2.0 輸出亂碼解決方法