Skip to content

Commit c91df99

Browse files
KevinRansombaronfel
authored andcommitted
Add probing for netcoreapp3.1 tools and tps (#8543)
1 parent 6fa8701 commit c91df99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/CompilerLocationUtils.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ module internal FSharpEnvironment =
256256
if typeof<obj>.Assembly.GetName().Name = "mscorlib" then
257257
[| "net48"; "net472"; "net471";"net47";"net462";"net461"; "net452"; "net451"; "net45"; "netstandard2.0" |]
258258
elif typeof<obj>.Assembly.GetName().Name = "System.Private.CoreLib" then
259-
[| "netcoreapp3.0"; "netstandard2.1"; "netcoreapp2.2"; "netcoreapp2.1"; "netstandard2.0" |]
259+
[| "netcoreapp3.1"; "netcoreapp3.0"; "netstandard2.1"; "netcoreapp2.2"; "netcoreapp2.1"; "netstandard2.0" |]
260260
else
261261
System.Diagnostics.Debug.Assert(false, "Couldn't determine runtime tooling context, assuming it supports at least .NET Standard 2.0")
262262
[| "netstandard2.0" |]

0 commit comments

Comments
 (0)