and*_*106 5 c# debugging visual-studio-code
使用调试器时,是否有人看到过此特定的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...");
}
}
}
Run Code Online (Sandbox Code Playgroud)
项目文件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>
Run Code Online (Sandbox Code Playgroud)
该launch.json
是:
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information 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 information 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",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
Run Code Online (Sandbox Code Playgroud)
}
并且tasks.json
是:
{
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "test",
"args": [
"${workspaceRoot}/xunitexample.csproj"
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}
Run Code Online (Sandbox Code Playgroud)
似乎可以通过以下输出屏幕完成:
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
Run Code Online (Sandbox Code Playgroud)
你好,世界...
[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
Run Code Online (Sandbox Code Playgroud)
-
但是它仍然在状态屏幕顶部以醒目的红色显示此配置错误消息:
处理“ configurationDone”请求时出错。未知错误:0x89720010
它是什么,为什么被显示?
提前谢谢了。
归档时间: |
|
查看次数: |
649 次 |
最近记录: |