diff --git a/src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj b/src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj index d957ca84e..4e6e234dd 100644 --- a/src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj +++ b/src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj @@ -1,6 +1,7 @@  net8.0 + linux-x64 Microsoft.Python.Analysis Microsoft.Python.Analysis Microsoft.Python.Analysis diff --git a/src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj b/src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj index 3905f2dfc..aaa29eec2 100644 --- a/src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj +++ b/src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj @@ -1,6 +1,7 @@  net8.0 + linux-x64 Microsoft.Python.Analysis Microsoft.Python.Analysis.Core Microsoft.Python.Analysis.Core diff --git a/src/Core/Impl/Microsoft.Python.Core.csproj b/src/Core/Impl/Microsoft.Python.Core.csproj index f8f2f48f0..d3eba0efd 100644 --- a/src/Core/Impl/Microsoft.Python.Core.csproj +++ b/src/Core/Impl/Microsoft.Python.Core.csproj @@ -1,6 +1,7 @@  net8.0 + linux-x64 Microsoft.Python.Core Microsoft.Python.Core Microsoft.Python.Core diff --git a/src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj b/src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj index 0a76cdaec..2fe9f4f10 100644 --- a/src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj +++ b/src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj @@ -1,6 +1,7 @@  net8.0 + linux-x64 Microsoft.Python.LanguageServer Microsoft.Python.LanguageServer Microsoft.Python.LanguageServer diff --git a/src/Parsing/Impl/Microsoft.Python.Parsing.csproj b/src/Parsing/Impl/Microsoft.Python.Parsing.csproj index ff530b9e7..3e0284774 100644 --- a/src/Parsing/Impl/Microsoft.Python.Parsing.csproj +++ b/src/Parsing/Impl/Microsoft.Python.Parsing.csproj @@ -1,6 +1,7 @@  net8.0 + linux-x64 Microsoft.Python.Parsing Microsoft.Python.Parsing Microsoft.Python.Parsing diff --git a/src/Parsing/Impl/PythonLanguageVersion.cs b/src/Parsing/Impl/PythonLanguageVersion.cs index 6c99c5cb1..1eb797c47 100644 --- a/src/Parsing/Impl/PythonLanguageVersion.cs +++ b/src/Parsing/Impl/PythonLanguageVersion.cs @@ -38,7 +38,10 @@ public enum PythonLanguageVersion { V36 = 0x0306, V37 = 0x0307, V38 = 0x0308, - V39 = 0x0309 + V39 = 0x0309, + V310 = 0x030A, + V311 = 0x030B, + V312 = 0x030C } public static class PythonLanguageVersionExtensions {