微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

C#,visual studio代码,调试器,错误处理’configurationDone’请求.未知错误:0x89720010,

有没有人在使用调试器时看到这个特定的Visual Studio Code错误?我已将其缩小到此错误代码,并且似乎没有关于此问题的任何在线资源.

我正在使用Visual Studio Code进行一些C#调试.它缩小到这个问题.我在XUNIT项目中有一段简单的代码,如下所示:

using System;
using Xunit;

namespace xunitexample
{
    public class UnitTest
    {
        [Fact]
        public void Test1()
        {
            Console.WriteLine("Hello World...");
        }
    }    
}

项目文件xunitexample.csproj:

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
    <TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
    <packagereference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
    <packagereference Include="xunit" Version="2.2.0" />
    <packagereference Include="xunit.runner.visualstudio" Version="2.2.0" />
</ItemGroup>

launch.json是:

{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further @R_781_4045@ion visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0","configurations": [
    {
        "name": ".NET Core Launch (console)","type": "coreclr","request": "launch","prelaunchTask": "test",// If you have changed target frameworks,make sure to update the program path.
        "program": "${workspaceRoot}/bin/Debug/netcoreapp1.1/xunitexample.dll","args": [],"cwd": "${workspaceRoot}",// For more @R_781_4045@ion about the 'console' field,see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
        "console": "internalConsole","stopAtEntry": false,"internalConsoleOptions": "openOnSessionStart"
    },{
        "name": ".NET Core Attach","request": "attach","processId": "${command:pickProcess}"
    }
]

}

而tasks.json是:

{
    "version": "0.1.0","command": "dotnet","isShellCommand": true,"tasks": [
        {
            "taskName": "test","args": [
                "${workspaceRoot}/xunitexample.csproj"
            ],"isBuildCommand": true,"problemmatcher": "$msCompile"
        }
    ]
}

它似乎运行完成与输出屏幕:

Build started,please wait...
Build completed.

Test run for c:\Users\carlf\Documents\solidity\geth\xunitexample\bin\Debug\netcoreapp1.1\xunitexample.dll(.NETCoreApp,Version=v1.1)
Microsoft (R) Test Execution Command Line Tool Version 15.0.0.0
copyright (c) Microsoft Corporation.  All rights reserved.

Starting test execution,please wait...
[xUnit.net 00:00:00.5726113]   discovering: xunitexample

[xUnit.net 00:00:00.6819027]   discovered:  xunitexample

[xUnit.net 00:00:00.7242235]   Starting:    xunitexample

你好,世界…

[xUnit.net 00:00:00.8617720]   Finished:    xunitexample
Total tests: 1. Passed: 1. Failed: 0. Skipped: 0.

Test Run Successful.

Test execution time: 1.5850 Seconds

但是仍然会在状态屏幕的顶部显示此配置错误消息,大显眼的RED:

Error processing ‘configurationDone’ request. UnkNown Error: 0x89720010

它是什么以及它为什么被展示?

提前谢谢了.

解决方法

此VS代码问题现已修复.请参阅VS Code版本1.12.1. 它在这里工作!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐