Disable "There are unresolved dependencies from..." message

omnisharp, visual-studio-code

Solution

In settings.json, add the following:

{
    "csharp.suppressDotnetRestoreNotification":true
}

Requires version 1.5-beta6 of C# for Visual Studio Code.

Here is how to open the settings.json

Problem

How do we disable the "There are unresolved dependencies from..." message that comes up whenever there are unresolved dependencies? I would rather not be told this.

Original source