Skip to content

Commit

Permalink
Merge branch 'master' into feature/simplified-symbolfinder
Browse files Browse the repository at this point in the history
  • Loading branch information
filipw authored Nov 12, 2019
2 parents 260ac30 + e60f710 commit 4c2e55a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion omnisharp.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"script": {
"enableScriptNuGetReferences": true,
"defaultTargetFramework": "netcoreapp2.1"
"defaultTargetFramework": "netcoreapp3.0"
}
}
2 changes: 1 addition & 1 deletion test-assets/test-scripts/DotnetCoreScriptSimple/main.csx
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#! "netcoreapp2.0"
#! "netcoreapp3.0"
Console.WriteLine("Hello world!");
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! "netcoreapp2.0"
#! "netcoreapp3.0"
#r "nuget: Newtonsoft.Json,11.0.2"

using Newtonsoft.Json;
Expand Down
2 changes: 1 addition & 1 deletion tests/OmniSharp.Script.Tests/WorkspaceInformationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class WorkspaceInformationTests : AbstractTestFixture
private static Dictionary<string, string> s_netCoreScriptingConfiguration = new Dictionary<string, string>
{
["script:enableScriptNuGetReferences"] = "true",
["script:defaultTargetFramework"] = "netcoreapp2.1"
["script:defaultTargetFramework"] = "netcoreapp3.0"
};

public WorkspaceInformationTests(ITestOutputHelper output)
Expand Down

0 comments on commit 4c2e55a

Please sign in to comment.