Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit bb96377

Browse files
Add .NET6 as a Q# supported framework
1 parent 381cdb1 commit bb96377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QsCompiler/LanguageServer/ProjectLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ internal static Dictionary<string, string> GlobalProperties(string? targetFramew
5454
new Regex(@"(netstandard[1-9]\.[0-9])|(netcoreapp[1-9]\.[0-9])|(net[1-9][0-9][0-9]?)");
5555

5656
private readonly ImmutableArray<string> supportedQsFrameworks =
57-
ImmutableArray.Create("netstandard2.", "netcoreapp2.", "netcoreapp3.");
57+
ImmutableArray.Create("netstandard2.", "netcoreapp2.", "netcoreapp3.", "net6.");
5858

5959
/// <summary>
6060
/// Returns true if the given framework is officially supported for Q# projects.

0 commit comments

Comments
 (0)