Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrennan <brecon@microsoft.com>2022-08-30 02:17:26 +0300
committerGitHub <noreply@github.com>2022-08-30 02:17:26 +0300
commitf3c67cac25c1b6b3f8c0c7fa167c6f80fd501d3b (patch)
treef6e44d182d315a7cc4e9e78a06a39fa5c1371982
parent4fc34ae0bc15a854661711b0fd5e0dd99d323dbc (diff)
Pin language version in release branchbrecon/lang70
We shouldn't be using new language features in a patch, keep that stuff in main!
-rw-r--r--eng/targets/CSharp.Common.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/targets/CSharp.Common.props b/eng/targets/CSharp.Common.props
index a6ee8c7067..67af33dec3 100644
--- a/eng/targets/CSharp.Common.props
+++ b/eng/targets/CSharp.Common.props
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
- <LangVersion>preview</LangVersion>
+ <LangVersion>11.0</LangVersion>
<!-- Enables Strict mode for Roslyn compiler -->
<Features>strict</Features>