dotnet / vscode-csharp

Official C# support for Visual Studio Code
MIT License
2.87k stars 675 forks source link

How to run C# unit test #3378

Closed heng-liu closed 5 days ago

heng-liu commented 5 years ago

Issue Description

Not able to debug C# unit test on Mac As VScode is the only way to debug dotnet core C# project on Mac, can you help take a look? Thanks!

Steps to Reproduce

1.download test solution: https://github.com/NuGet/NuGet.Client/tree/dev-hengliu-6enableMacAddCert 2.make sure you have dotnet SDK 3.0 installed 3.edit settings.json according to https://github.com/OmniSharp/omnisharp-vscode/wiki/How-to-run-and-debug-unit-tests 4.in settings, set following to true: csharp.referencesCodeLens.enabled csharp.testsCodeLens.enabled 5.edit launch.json as following: { "name": ".NET Core Launch (console)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/bin/Debug/netcoreapp3.0/NuGet.Packaging.FuncTest.dll", "args": [], "cwd": "${workspaceFolder}/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest", "console": "internalConsole", "stopAtEntry": true, "requireExactSource": false }

  1. open ./test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/SigningTests/SignatureTrustAndValidityVerificationProviderTests.cs, set break point at any test cases

Expected Behavior

"run test", "debug test" should displayed as the https://github.com/OmniSharp/omnisharp-vscode/wiki/How-to-run-and-debug-unit-tests

Actual Behavior

no "run test", "debug test" displayed.

And I don't know if this is the only way to debug C# unit tests. It would be great if there is any work around.

By the way, I could run dotnet test to test ./test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj

If I click debug, the following logs displayed:

Logs

`------------------------------------------------------------------- You may only use the Microsoft .NET Core Debugger (vsdbg) with Visual Studio Code, Visual Studio or Visual Studio for Mac software to help you develop and test your applications.

Loaded '/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.0.0/System.Private.CoreLib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. Breakpoint warning: No executable code of the debugger’s target code type is associated with this line. Possible causes include: conditional compilation, compiler optimizations, or the target architecture of this line is not supported by the current debugger code type. - /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/SigningTests/PrimarySignatureTests.cs:214 Loaded '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/bin/Debug/netcoreapp3.0/NuGet.Packaging.FuncTest.dll'. Symbols loaded. Loaded '/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.0.0/System.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. The program '[23195] NuGet.Packaging.FuncTest.dll' has exited with code 0 (0x0).`

OmniSharp log

Post the output from Output-->OmniSharp log here

C# log

Post the output from Output-->C# here

Environment information

VSCode version: 1.39.2 C# Extension: 1.21.5

Mono Information OmniSharp using global mono :6.4.0
Dotnet Information .NET Core SDK (reflecting any global.json): Version: 3.0.100 Commit: 04339c3a26 Runtime Environment: OS Name: Mac OS X OS Version: 10.14 OS Platform: Darwin RID: osx.10.14-x64 Base Path: /usr/local/share/dotnet/sdk/3.0.100/ Host (useful for support): Version: 3.0.0 Commit: 7d57652f33 .NET Core SDKs installed: 2.1.701 [/usr/local/share/dotnet/sdk] 3.0.100-preview8-013656 [/usr/local/share/dotnet/sdk] 3.0.100 [/usr/local/share/dotnet/sdk] .NET Core runtimes installed: Microsoft.AspNetCore.All 2.1.12 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.All] Microsoft.AspNetCore.App 2.1.12 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 3.0.0-preview8.19405.7 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 3.0.0 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.NETCore.App 2.1.12 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 3.0.0-preview8-28405-07 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 3.0.0 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] To install additional .NET Core runtimes or SDKs: https://aka.ms/dotnet-download
Visual Studio Code Extensions |Extension|Author|Version| |---|---|---| |csharp|ms-vscode|1.21.5|;
gregg-miskelly commented 5 years ago

I am not sure if the issue is that OminSharp doesn't understand that CIOnlyFact is a unit test attribute, or if OmniSharp just doesn't understand your project. But this isn't anything related to the debugger.

heng-liu commented 5 years ago

May I know if you have any suggestion on how to make debug unit test work? Does removing CIOnlyFact attribute work? Thanks!

gregg-miskelly commented 5 years ago

I am on the debugger side of this extension and your issue is on the language side. But two things you can try:

  1. Try using [Fact] instead of [CIOnlyFact] to see if that matters
  2. Check out the omnisharp log and see if it is loading the sln/project that you want it to, and if it loads it successfully.
heng-liu commented 5 years ago

Thanks. I replaced all [CIOnlyFact] with [Fact], but there is no "run test" displayed as code lens. May I know how to "check out the omnisharp log"? Do you mean the log in debug console?

Pls advise if there is any other way to make it possible to debug the unit test (not waiting for code lens to show up). Thanks!

gregg-miskelly commented 5 years ago

The "OmniSharp Log" can be found as one of the sections in the 'Output' tab.

gregg-miskelly commented 5 years ago

Oh, and the only other way that I know of to debug unit tests (aside from the CodeLens) is to add something like: while (!Debugger.IsAttached) Thread.Sleep(100); to the test you want to debug, and then run the test by hand and attach the debugger.

heng-liu commented 5 years ago

Thanks. I found the OmniSharp Log is empty, not sure what does this mean. However, I can see the restore and build run successfully in terminal.

heng-liu commented 5 years ago

Hi~ I paste a part of OmniSharp Log as following. Can you pls take a look? Thanks!


Starting OmniSharp server at 10/29/2019, 5:01:46 PM
    Target: /Users/heng/repos/NuGet.Client/NuGet.Client/NuGet.sln

OmniSharp server started with Mono 6.4.0.
    Path: /Users/heng/.vscode/extensions/ms-vscode.csharp-1.21.5/.omnisharp/1.34.5/omnisharp/OmniSharp.exe
    PID: 27476

[info]: OmniSharp.Stdio.Host
        Starting OmniSharp on MacOS 10.14.6 (x64)
[info]: OmniSharp.Services.DotNetCliService
        DotNetPath set to dotnet
[info]: OmniSharp.MSBuild.Discovery.MSBuildLocator
        Located 2 MSBuild instance(s)
            1: Mono 16.0 - "/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin"
            2: StandAlone 16.0 - "/Users/heng/.vscode/extensions/ms-vscode.csharp-1.21.5/.omnisharp/1.34.5/omnisharp/.msbuild/Current/Bin"
[info]: OmniSharp.MSBuild.Discovery.MSBuildLocator
        Registered MSBuild instance: Mono 16.0 - "/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin"
            CscToolExe = csc.exe
            CscToolPath = /Users/heng/.vscode/extensions/ms-vscode.csharp-1.21.5/.omnisharp/1.34.5/omnisharp/.msbuild/Current/Bin/Roslyn
[info]: OmniSharp.Cake.CakeProjectSystem
        Detecting Cake files in '/Users/heng/repos/NuGet.Client/NuGet.Client'.
[info]: OmniSharp.Cake.CakeProjectSystem
        Could not find any Cake files
[info]: OmniSharp.MSBuild.ProjectSystem
        Detecting projects in '/Users/heng/repos/NuGet.Client/NuGet.Client/NuGet.sln'.
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.CommandLine.XPlat/NuGet.CommandLine.XPlat.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.Build.Tasks.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Packaging/NuGet.Packaging.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.ProjectModel/NuGet.ProjectModel.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.LibraryModel/NuGet.LibraryModel.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.DependencyResolver.Core/NuGet.DependencyResolver.Core.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Protocol/NuGet.Protocol.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Resolver/NuGet.Resolver.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Frameworks.Test/NuGet.Frameworks.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Packaging.Test/NuGet.Packaging.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Protocol.Tests/NuGet.Protocol.Tests.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Resolver.Test/NuGet.Resolver.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Versioning.Test/NuGet.Versioning.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Commands/NuGet.Commands.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.DependencyResolver.Core.Tests/NuGet.DependencyResolver.Core.Tests.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Commands.Test/NuGet.Commands.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/NuGet.ProjectModel.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.PackageManagement/NuGet.PackageManagement.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.PackageManagement.Test/NuGet.PackageManagement.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Indexing/NuGet.Indexing.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Common.Test/NuGet.Common.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.LibraryModel.Tests/NuGet.LibraryModel.Tests.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/NuGet.Commands.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Protocol.FuncTest/NuGet.Protocol.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Indexing.Test/NuGet.Indexing.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/NuGet.XPlat.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Pack.Test/NuGet.Build.Tasks.Pack.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/Dotnet.Integration.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.CommandLine/NuGet.CommandLine.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Credentials/NuGet.Credentials.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio/NuGet.VisualStudio.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Implementation/NuGet.VisualStudio.Implementation.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.PowerShellCmdlets/NuGet.PackageManagement.PowerShellCmdlets.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.UI/NuGet.PackageManagement.UI.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager/NuGet.SolutionRestoreManager.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager.Interop/NuGet.SolutionRestoreManager.Interop.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Tools/NuGet.Tools.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Client/NuGet.VisualStudio.Client.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.VisualStudio/NuGet.PackageManagement.VisualStudio.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/SampleCommandLineExtensions/SampleCommandLineExtensions.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Interop/NuGet.VisualStudio.Interop.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGetConsole.Host.PowerShell/NuGetConsole.Host.PowerShell.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Console/NuGet.Console.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.CommandLine.FuncTest/NuGet.CommandLine.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGet.CommandLine.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Credentials.Test/NuGet.Credentials.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.UI.Test/NuGet.PackageManagement.UI.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.VisualStudio.Test/NuGet.PackageManagement.VisualStudio.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.SolutionRestoreManager.Test/NuGet.SolutionRestoreManager.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.VisualStudio.Implementation.Test/NuGet.VisualStudio.Implementation.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePluginCredentialProvider/TestableCredentialProvider.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/API.Test/API.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestableVSCredentialProvider/TestableVSCredentialProvider.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/GenerateTestPackages/GenerateTestPackages.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePlugin/TestablePlugin.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Core.FuncTest/NuGet.Core.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Test/NuGet.Build.Tasks.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGetConsole.Host.PowerShell.Test/NuGetConsole.Host.PowerShell.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Localization/NuGet.Localization.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Common.FuncTest/NuGet.Common.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.CommandLine.Xplat.Tests/NuGet.CommandLine.Xplat.Tests.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/NuGet.StaFact/NuGet.StaFact.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Shared.Tests/NuGet.Shared.Tests.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.MSSigning.Extensions.FuncTest/NuGet.MSSigning.Extensions.FuncTest.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.MSSigning.Extensions.Test/NuGet.MSSigning.Extensions.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/Microsoft.Build.NuGetSdkResolver/Microsoft.Build.NuGetSdkResolver.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/Microsoft.Build.NuGetSdkResolver.Tests/Microsoft.Build.NuGetSdkResolver.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.VisualStudio.Common.Test/NuGet.VisualStudio.Common.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/GenerateLicenseList/GenerateLicenseList.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Packaging.Core/NuGet.Packaging.Core.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Queue project update for '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.Tools.Test/NuGet.Tools.Test.csproj'
[info]: OmniSharp.Script.ScriptProjectSystem
        Detecting CSX files in '/Users/heng/repos/NuGet.Client/NuGet.Client'.
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.CommandLine.XPlat/NuGet.CommandLine.XPlat.csproj
[info]: OmniSharp.Script.ScriptProjectSystem
        Could not find any CSX files
[info]: OmniSharp.WorkspaceInitializer
        Invoking Workspace Options Provider: OmniSharp.Roslyn.CSharp.Services.CSharpFormattingWorkspaceOptionsProvider, Order: 0
[info]: OmniSharp.WorkspaceInitializer
        Invoking Workspace Options Provider: OmniSharp.Roslyn.CSharp.Services.RenameWorkspaceOptionsProvider, Order: 100
[info]: OmniSharp.WorkspaceInitializer
        Invoking Workspace Options Provider: OmniSharp.Roslyn.CSharp.Services.EditorConfigWorkspaceOptionsProvider, Order: 200
[info]: OmniSharp.WorkspaceInitializer
        Configuration finished.
[info]: OmniSharp.Stdio.Host
        Omnisharp server running using Stdio at location '/Users/heng/repos/NuGet.Client/NuGet.Client' on host 27444.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.CommandLine.XPlat/NuGet.CommandLine.XPlat.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.CommandLine.XPlat/NuGet.CommandLine.XPlat.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.CommandLine.XPlat/NuGet.CommandLine.XPlat.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.Build.Tasks.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.Build.Tasks.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.Build.Tasks.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Packaging/NuGet.Packaging.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Packaging/NuGet.Packaging.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Packaging/NuGet.Packaging.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.ProjectModel/NuGet.ProjectModel.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.ProjectModel/NuGet.ProjectModel.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.ProjectModel/NuGet.ProjectModel.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.LibraryModel/NuGet.LibraryModel.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.LibraryModel/NuGet.LibraryModel.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.LibraryModel/NuGet.LibraryModel.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.DependencyResolver.Core/NuGet.DependencyResolver.Core.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.DependencyResolver.Core/NuGet.DependencyResolver.Core.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.DependencyResolver.Core/NuGet.DependencyResolver.Core.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Protocol/NuGet.Protocol.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Protocol/NuGet.Protocol.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Protocol/NuGet.Protocol.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Resolver/NuGet.Resolver.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Resolver/NuGet.Resolver.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Resolver/NuGet.Resolver.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Frameworks.Test/NuGet.Frameworks.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Frameworks.Test/NuGet.Frameworks.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Frameworks.Test/NuGet.Frameworks.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Frameworks.Test/NuGet.Frameworks.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Packaging.Test/NuGet.Packaging.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Packaging.Test/NuGet.Packaging.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Packaging.Test/NuGet.Packaging.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Packaging.Test/NuGet.Packaging.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Protocol.Tests/NuGet.Protocol.Tests.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Protocol.Tests/NuGet.Protocol.Tests.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Protocol.Tests/NuGet.Protocol.Tests.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Protocol.Tests/NuGet.Protocol.Tests.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Resolver.Test/NuGet.Resolver.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Resolver.Test/NuGet.Resolver.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Resolver.Test/NuGet.Resolver.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Resolver.Test/NuGet.Resolver.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Versioning.Test/NuGet.Versioning.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Versioning.Test/NuGet.Versioning.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Versioning.Test/NuGet.Versioning.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Versioning.Test/NuGet.Versioning.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Commands/NuGet.Commands.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Commands/NuGet.Commands.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Commands/NuGet.Commands.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.DependencyResolver.Core.Tests/NuGet.DependencyResolver.Core.Tests.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.DependencyResolver.Core.Tests/NuGet.DependencyResolver.Core.Tests.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.DependencyResolver.Core.Tests/NuGet.DependencyResolver.Core.Tests.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.DependencyResolver.Core.Tests/NuGet.DependencyResolver.Core.Tests.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Commands.Test/NuGet.Commands.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Commands.Test/NuGet.Commands.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Commands.Test/NuGet.Commands.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Commands.Test/NuGet.Commands.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/NuGet.ProjectModel.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/NuGet.ProjectModel.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/NuGet.ProjectModel.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/NuGet.ProjectModel.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.PackageManagement/NuGet.PackageManagement.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.PackageManagement/NuGet.PackageManagement.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.PackageManagement/NuGet.PackageManagement.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.PackageManagement.Test/NuGet.PackageManagement.Test.csproj
[warn]: OmniSharp.MSBuild.ProjectLoader
        ProjectReference '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj' was resolved using '.NETFramework,Version=v4.7.2' instead of the project target framework '.NETCoreApp,Version=v2.1'. This project may not be fully compatible with your project.
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.PackageManagement.Test/NuGet.PackageManagement.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.PackageManagement.Test/NuGet.PackageManagement.Test.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: ProjectReference '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj' was resolved using '.NETFramework,Version=v4.7.2' instead of the project target framework '.NETCoreApp,Version=v2.1'. This project may not be fully compatible with your project.

[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.PackageManagement.Test/NuGet.PackageManagement.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Indexing/NuGet.Indexing.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Indexing/NuGet.Indexing.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Indexing/NuGet.Indexing.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Common.Test/NuGet.Common.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Common.Test/NuGet.Common.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Common.Test/NuGet.Common.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Common.Test/NuGet.Common.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.LibraryModel.Tests/NuGet.LibraryModel.Tests.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.LibraryModel.Tests/NuGet.LibraryModel.Tests.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.LibraryModel.Tests/NuGet.LibraryModel.Tests.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.LibraryModel.Tests/NuGet.LibraryModel.Tests.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/NuGet.Commands.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/NuGet.Commands.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/NuGet.Commands.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/NuGet.Commands.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Protocol.FuncTest/NuGet.Protocol.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Protocol.FuncTest/NuGet.Protocol.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Protocol.FuncTest/NuGet.Protocol.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Protocol.FuncTest/NuGet.Protocol.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Indexing.Test/NuGet.Indexing.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Indexing/NuGet.Indexing.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Indexing.Test/NuGet.Indexing.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Indexing.Test/NuGet.Indexing.Test.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Indexing/NuGet.Indexing.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/NuGet.XPlat.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/NuGet.XPlat.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/NuGet.XPlat.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/NuGet.XPlat.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Pack.Test/NuGet.Build.Tasks.Pack.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Pack.Test/NuGet.Build.Tasks.Pack.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Pack.Test/NuGet.Build.Tasks.Pack.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Pack.Test/NuGet.Build.Tasks.Pack.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/Dotnet.Integration.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/Dotnet.Integration.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/Dotnet.Integration.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/Dotnet.Integration.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.CommandLine/NuGet.CommandLine.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.CommandLine/NuGet.CommandLine.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.CommandLine/NuGet.CommandLine.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Credentials/NuGet.Credentials.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Credentials/NuGet.Credentials.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Credentials/NuGet.Credentials.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio/NuGet.VisualStudio.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio/NuGet.VisualStudio.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio/NuGet.VisualStudio.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Implementation/NuGet.VisualStudio.Implementation.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Implementation/NuGet.VisualStudio.Implementation.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Implementation/NuGet.VisualStudio.Implementation.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.PowerShellCmdlets/NuGet.PackageManagement.PowerShellCmdlets.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.PowerShellCmdlets/NuGet.PackageManagement.PowerShellCmdlets.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.PowerShellCmdlets/NuGet.PackageManagement.PowerShellCmdlets.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.UI/NuGet.PackageManagement.UI.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.UI/NuGet.PackageManagement.UI.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.UI/NuGet.PackageManagement.UI.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager/NuGet.SolutionRestoreManager.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager/NuGet.SolutionRestoreManager.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager/NuGet.SolutionRestoreManager.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager.Interop/NuGet.SolutionRestoreManager.Interop.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager.Interop/NuGet.SolutionRestoreManager.Interop.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.SolutionRestoreManager.Interop/NuGet.SolutionRestoreManager.Interop.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Tools/NuGet.Tools.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Tools/NuGet.Tools.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Tools/NuGet.Tools.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Client/NuGet.VisualStudio.Client.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Client/NuGet.VisualStudio.Client.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Client/NuGet.VisualStudio.Client.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.VisualStudio/NuGet.PackageManagement.VisualStudio.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.VisualStudio/NuGet.PackageManagement.VisualStudio.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.PackageManagement.VisualStudio/NuGet.PackageManagement.VisualStudio.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/SampleCommandLineExtensions/SampleCommandLineExtensions.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/SampleCommandLineExtensions/SampleCommandLineExtensions.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/SampleCommandLineExtensions/SampleCommandLineExtensions.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Interop/NuGet.VisualStudio.Interop.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Interop/NuGet.VisualStudio.Interop.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Interop/NuGet.VisualStudio.Interop.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGetConsole.Host.PowerShell/NuGetConsole.Host.PowerShell.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGetConsole.Host.PowerShell/NuGetConsole.Host.PowerShell.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGetConsole.Host.PowerShell/NuGetConsole.Host.PowerShell.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Console/NuGet.Console.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Console/NuGet.Console.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.Console/NuGet.Console.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.CommandLine.FuncTest/NuGet.CommandLine.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '../../NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj' targets 'netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.CommandLine.FuncTest/NuGet.CommandLine.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.CommandLine.FuncTest/NuGet.CommandLine.FuncTest.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '../../NuGet.Core.Tests/NuGet.Configuration.Test/NuGet.Configuration.Test.csproj' targets 'netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGet.CommandLine.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.CommandLine/NuGet.CommandLine.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '../../TestExtensions/SampleCommandLineExtensions/SampleCommandLineExtensions.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '../../TestExtensions/TestablePluginCredentialProvider/TestableCredentialProvider.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGet.CommandLine.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGet.CommandLine.Test.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.CommandLine/NuGet.CommandLine.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '../../TestExtensions/SampleCommandLineExtensions/SampleCommandLineExtensions.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '../../TestExtensions/TestablePluginCredentialProvider/TestableCredentialProvider.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Credentials.Test/NuGet.Credentials.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Credentials/NuGet.Credentials.csproj' targets 'net472;netstandard2.0;netstandard2.1'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Credentials.Test/NuGet.Credentials.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Credentials.Test/NuGet.Credentials.Test.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Credentials/NuGet.Credentials.csproj' targets 'net472;netstandard2.0;netstandard2.1'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.UI.Test/NuGet.PackageManagement.UI.Test.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.UI.Test/NuGet.PackageManagement.UI.Test.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.UI.Test/NuGet.PackageManagement.UI.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.VisualStudio.Test/NuGet.PackageManagement.VisualStudio.Test.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.VisualStudio.Test/NuGet.PackageManagement.VisualStudio.Test.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.PackageManagement.VisualStudio.Test/NuGet.PackageManagement.VisualStudio.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.SolutionRestoreManager.Test/NuGet.SolutionRestoreManager.Test.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.SolutionRestoreManager.Test/NuGet.SolutionRestoreManager.Test.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.SolutionRestoreManager.Test/NuGet.SolutionRestoreManager.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.VisualStudio.Implementation.Test/NuGet.VisualStudio.Implementation.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Implementation/NuGet.VisualStudio.Implementation.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio/NuGet.VisualStudio.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.VisualStudio.Implementation.Test/NuGet.VisualStudio.Implementation.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.VisualStudio.Implementation.Test/NuGet.VisualStudio.Implementation.Test.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Common/NuGet.VisualStudio.Common.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio.Implementation/NuGet.VisualStudio.Implementation.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.VisualStudio/NuGet.VisualStudio.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePluginCredentialProvider/TestableCredentialProvider.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePluginCredentialProvider/TestableCredentialProvider.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePluginCredentialProvider/TestableCredentialProvider.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/API.Test/API.Test.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/API.Test/API.Test.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/API.Test/API.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestableVSCredentialProvider/TestableVSCredentialProvider.csproj
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestableVSCredentialProvider/TestableVSCredentialProvider.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestableVSCredentialProvider/TestableVSCredentialProvider.csproj(1,1)
Microsoft.Build.Exceptions.InvalidProjectFileException: The imported project "/Users/heng/repos/NuGet.Client/NuGet.Client/packages/Microsoft.VSSDK.BuildTools.15.9.3032/build/Microsoft.VSSDK.BuildTools.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.  /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestableVSCredentialProvider/TestableVSCredentialProvider.csproj
  at Microsoft.Build.Shared.ProjectErrorUtilities.ThrowInvalidProject (System.String errorSubCategoryResourceName, Microsoft.Build.Shared.IElementLocation elementLocation, System.String resourceName, System.Object[] args) [0x00040] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Shared.ProjectErrorUtilities.VerifyThrowInvalidProject[T1] (System.Boolean condition, System.String errorSubCategoryResourceName, Microsoft.Build.Shared.IElementLocation elementLocation, System.String resourceName, T1 arg0) [0x00003] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Shared.ProjectErrorUtilities.ThrowInvalidProject[T1] (Microsoft.Build.Shared.IElementLocation elementLocation, System.String resourceName, T1 arg0) [0x00000] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].ExpandAndLoadImportsFromUnescapedImportExpression (System.String directoryOfImportingFile, Microsoft.Build.Construction.ProjectImportElement importElement, System.String unescapedExpression, System.Boolean throwOnFileNotExistsError, System.Collections.Generic.List`1[Microsoft.Build.Construction.ProjectRootElement]& imports) [0x0060f] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].ExpandAndLoadImportsFromUnescapedImportExpressionConditioned (System.String directoryOfImportingFile, Microsoft.Build.Construction.ProjectImportElement importElement, System.Collections.Generic.List`1[Microsoft.Build.Construction.ProjectRootElement]& projects, Microsoft.Build.BackEnd.SdkResolution.SdkResult& sdkResult, System.Boolean throwOnFileNotExistsError) [0x00268] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].ExpandAndLoadImports (System.String directoryOfImportingFile, Microsoft.Build.Construction.ProjectImportElement importElement, Microsoft.Build.BackEnd.SdkResolution.SdkResult& sdkResult) [0x00027] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].EvaluateImportElement (System.String directoryOfImportingFile, Microsoft.Build.Construction.ProjectImportElement importElement) [0x0000d] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].PerformDepthFirstPass (Microsoft.Build.Construction.ProjectRootElement currentProjectOrImport) [0x00209] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].Evaluate (Microsoft.Build.BackEnd.Logging.ILoggingService loggingService, Microsoft.Build.Framework.BuildEventContext buildEventContext) [0x0011c] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Evaluator`4[P,I,M,D].Evaluate (Microsoft.Build.Evaluation.IEvaluatorData`4[P,I,M,D] data, Microsoft.Build.Construction.ProjectRootElement root, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings, System.Int32 maxNodeCount, Microsoft.Build.Collections.PropertyDictionary`1[T] environmentProperties, Microsoft.Build.BackEnd.Logging.ILoggingService loggingService, Microsoft.Build.Evaluation.IItemFactory`2[S,T] itemFactory, Microsoft.Build.Evaluation.IToolsetProvider toolsetProvider, Microsoft.Build.Evaluation.ProjectRootElementCacheBase projectRootElementCache, Microsoft.Build.Framework.BuildEventContext buildEventContext, Microsoft.Build.BackEnd.SdkResolution.ISdkResolverService sdkResolverService, System.Int32 submissionId, Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext, System.Boolean interactive) [0x0002f] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project.Reevaluate (Microsoft.Build.BackEnd.Logging.ILoggingService loggingServiceForEvaluation, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings, Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext) [0x0005e] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project.ReevaluateIfNecessary (Microsoft.Build.BackEnd.Logging.ILoggingService loggingServiceForEvaluation, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings, Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext) [0x00035] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project.ReevaluateIfNecessary (Microsoft.Build.BackEnd.Logging.ILoggingService loggingServiceForEvaluation, Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext) [0x00000] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project.ReevaluateIfNecessary (Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext) [0x00007] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project.Initialize (System.Collections.Generic.IDictionary`2[TKey,TValue] globalProperties, System.String toolsVersion, System.String subToolsetVersion, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings, Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext) [0x00126] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project..ctor (System.String projectFile, System.Collections.Generic.IDictionary`2[TKey,TValue] globalProperties, System.String toolsVersion, System.String subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings, Microsoft.Build.Evaluation.Context.EvaluationContext evaluationContext) [0x00093] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project..ctor (System.String projectFile, System.Collections.Generic.IDictionary`2[TKey,TValue] globalProperties, System.String toolsVersion, System.String subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) [0x00000] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project..ctor (System.String projectFile, System.Collections.Generic.IDictionary`2[TKey,TValue] globalProperties, System.String toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) [0x00000] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.Project..ctor (System.String projectFile, System.Collections.Generic.IDictionary`2[TKey,TValue] globalProperties, System.String toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) [0x00000] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.ProjectCollection.LoadProject (System.String fileName, System.Collections.Generic.IDictionary`2[TKey,TValue] globalProperties, System.String toolsVersion) [0x000f7] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at Microsoft.Build.Evaluation.ProjectCollection.LoadProject (System.String fileName, System.String toolsVersion) [0x00000] in <4f09eee3b78a486b82b9150b91f40192>:0 
  at OmniSharp.MSBuild.ProjectLoader.EvaluateProjectFileCore (System.String filePath) [0x0003f] in <ff8df2dce1c84a75b544deb6c52b47fa>:0 
  at OmniSharp.MSBuild.ProjectLoader.BuildProject (System.String filePath) [0x0000d] in <ff8df2dce1c84a75b544deb6c52b47fa>:0 
  at OmniSharp.MSBuild.ProjectFile.ProjectFileInfo.Load (System.String filePath, OmniSharp.MSBuild.ProjectIdInfo projectIdInfo, OmniSharp.MSBuild.ProjectLoader loader) [0x00015] in <ff8df2dce1c84a75b544deb6c52b47fa>:0 
  at OmniSharp.MSBuild.ProjectManager+<>c__DisplayClass29_0.<LoadProject>b__0 () [0x00000] in <ff8df2dce1c84a75b544deb6c52b47fa>:0 
  at (wrapper delegate-invoke) System.Func`1[System.ValueTuple`3[OmniSharp.MSBuild.ProjectFile.ProjectFileInfo,System.Collections.Immutable.ImmutableArray`1[OmniSharp.MSBuild.Logging.MSBuildDiagnostic],OmniSharp.MSBuild.Notification.ProjectLoadedEventArgs]].invoke_TResult()
  at OmniSharp.MSBuild.ProjectManager.LoadOrReloadProject (System.String projectFilePath, System.Func`1[TResult] loader) [0x0001b] in <ff8df2dce1c84a75b544deb6c52b47fa>:0 

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/GenerateTestPackages/GenerateTestPackages.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/GenerateTestPackages/GenerateTestPackages.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/GenerateTestPackages/GenerateTestPackages.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePlugin/TestablePlugin.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePlugin/TestablePlugin.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePlugin/TestablePlugin.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/TestablePlugin/TestablePlugin.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Core.FuncTest/NuGet.Core.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Core.FuncTest/NuGet.Core.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Core.FuncTest/NuGet.Core.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Core.FuncTest/NuGet.Core.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Test/NuGet.Build.Tasks.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Test/NuGet.Build.Tasks.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Test/NuGet.Build.Tasks.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Build.Tasks.Test/NuGet.Build.Tasks.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGetConsole.Host.PowerShell.Test/NuGetConsole.Host.PowerShell.Test.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGetConsole.Host.PowerShell.Test/NuGetConsole.Host.PowerShell.Test.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGetConsole.Host.PowerShell.Test/NuGetConsole.Host.PowerShell.Test.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Localization/NuGet.Localization.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Localization/NuGet.Localization.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/NuGet.Localization/NuGet.Localization.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Common.FuncTest/NuGet.Common.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Common.FuncTest/NuGet.Common.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Common.FuncTest/NuGet.Common.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Common.FuncTest/NuGet.Common.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.CommandLine.Xplat.Tests/NuGet.CommandLine.Xplat.Tests.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.CommandLine.Xplat.Tests/NuGet.CommandLine.Xplat.Tests.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.CommandLine.Xplat.Tests/NuGet.CommandLine.Xplat.Tests.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.CommandLine.Xplat.Tests/NuGet.CommandLine.Xplat.Tests.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/NuGet.StaFact/NuGet.StaFact.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/NuGet.StaFact/NuGet.StaFact.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestExtensions/NuGet.StaFact/NuGet.StaFact.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Shared.Tests/NuGet.Shared.Tests.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Shared.Tests/NuGet.Shared.Tests.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Shared.Tests/NuGet.Shared.Tests.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/NuGet.Shared.Tests/NuGet.Shared.Tests.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.MSSigning.Extensions.FuncTest/NuGet.MSSigning.Extensions.FuncTest.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '../../TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.MSSigning.Extensions.FuncTest/NuGet.MSSigning.Extensions.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.FuncTests/NuGet.MSSigning.Extensions.FuncTest/NuGet.MSSigning.Extensions.FuncTest.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '../../TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.MSSigning.Extensions.Test/NuGet.MSSigning.Extensions.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[fail]: OmniSharp.MSBuild.ProjectLoader
        Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.MSSigning.Extensions.Test/NuGet.MSSigning.Extensions.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Clients.Tests/NuGet.MSSigning.Extensions.Test/NuGet.MSSigning.Extensions.Test.csproj
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/test/TestUtilities/Test.Utility/Test.Utility.csproj' targets 'net472;netcoreapp2.1;netcoreapp3.0'. It cannot be referenced by a project that targets '_,Version=v0.0'.
/Library/Frameworks/Mono.framework/Versions/6.4.0/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(0,0): Error: Project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Clients/NuGet.MSSigning.Extensions/NuGet.MSSigning.Extensions.csproj' targets 'net472'. It cannot be referenced by a project that targets '_,Version=v0.0'.

[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/Microsoft.Build.NuGetSdkResolver/Microsoft.Build.NuGetSdkResolver.csproj
[info]: OmniSharp.MSBuild.ProjectManager
        Successfully loaded project file '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/Microsoft.Build.NuGetSdkResolver/Microsoft.Build.NuGetSdkResolver.csproj'.
[info]: OmniSharp.MSBuild.ProjectManager
        Adding project '/Users/heng/repos/NuGet.Client/NuGet.Client/src/NuGet.Core/Microsoft.Build.NuGetSdkResolver/Microsoft.Build.NuGetSdkResolver.csproj'
[info]: OmniSharp.MSBuild.ProjectManager
        Loading project: /Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/Microsoft.Build.NuGetSdkResolver.Tests/Microsoft.Build.NuGetSdkResolver.Test.csproj
[fail]: OmniSharp.MSBuild.ProjectLoader
        Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
[warn]: OmniSharp.MSBuild.ProjectManager
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/Microsoft.Build.NuGetSdkResolver.Tests/Microsoft.Build.NuGetSdkResolver.Test.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/Microsoft.Build.NuGetSdkResolver.Tests/Microsoft.Build.NuGetSdkResolver.Test.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.Tests/Microsoft.Build.NuGetSdkResolver.Tests/Microsoft.Build.NuGetSdkResolver.Test.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside
` ``
gregg-miskelly commented 5 years ago

CC @JoeRobich

cartermp commented 4 years ago

Thanks for filing. There appear to be some general issues with test discovery, and there could stand to be some more deliberate work around the design for test discovery and execution in general.

jcbritobr commented 4 years ago

Is this bug not fixed yet?

JoeRobich commented 5 days ago
        Failed to load project file '/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj'.
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj
/Users/heng/repos/NuGet.Client/NuGet.Client/test/NuGet.Core.FuncTests/NuGet.Packaging.FuncTest/NuGet.Packaging.FuncTest.csproj(0,0): Error: Unable to find a stable package Microsoft.NETCore.App with version (>= 3.0.0)
  - Found 3198 version(s) in dotnet-core [ Nearest version: 3.0.1-servicing-19502-01 ]
  - Found 76 version(s) in nuget.org [ Nearest version: 3.0.0-preview8-28405-07 ]
  - Found 0 version(s) in dotnet-buildtools
  - Found 0 version(s) in dotnet-msbuild
  - Found 0 version(s) in NuGetVolatile
  - Found 0 version(s) in dotnet-roslyn
  - Found 0 version(s) in vside

The test project in question never loaded correctly. This is why Test code lens were not displayed.

If you are still running into problems, please open a new issue.