码迷,mamicode.com
首页 > Web开发 > 详细

vscode 调试.net core 2.0 输出乱码解决方法

时间:2017-10-10 13:15:07      阅读:499      评论:0      收藏:0      [点我收藏+]

标签:修改   shel   har   []   调试   blog   net   logs   2.0   

之前在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 输出乱码解决方法

标签:修改   shel   har   []   调试   blog   net   logs   2.0   

原文地址:http://www.cnblogs.com/duihuayuqiu/p/7644690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!