Skip to content

Commit 8e66ac4

Browse files
committed
Ensure C# language version is 9.0+
Instead of forcing `preview` as the lang version, we now detect the whole range of valid values for the `LangVersion` property that users might configure, as documented in https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/langversion-compiler-option, and show an error if it's not `preview`, `latest`, `latestMajor` or is less than `9.0`. Fixes #26
1 parent e68332a commit 8e66ac4

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

src/ThisAssembly.Prerequisites/ThisAssembly.Prerequisites.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Description>Ensures that referencing project satisfies the prerequisites for ThisAssembly, namely:
1111

1212
* MSBuild 16.8+: contains the Roslyn support for source generators
13-
* C# language: it's the only language supported by Roslyn source generators at the moment.
13+
* C# 9.0 or greater language: it's the only language supported by Roslyn source generators at the moment.
1414
</Description>
1515
</PropertyGroup>
1616

src/ThisAssembly.Prerequisites/ThisAssembly.Prerequisites.props

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
<PropertyGroup>
44
<MSBuildShortVersion>$(MSBuildVersion.TrimEnd('0123456789').TrimEnd('.'))</MSBuildShortVersion>
5-
<!-- Remove when 16.8/C# 9 is stable -->
6-
<LangVersion Condition="'$(MSBuildShortVersion)' == '16.8'">Preview</LangVersion>
75
</PropertyGroup>
86

97
<ItemGroup>

src/ThisAssembly.Prerequisites/ThisAssembly.Prerequisites.targets

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@
33
<Target Name="EnsureSourceGenerators" BeforeTargets="BeforeCompile;CoreCompile">
44
<Error Text="ThisAssembly requires MSBuild 16.8+ or .NET SDK 5.0+."
55
Condition="$(MSBuildShortVersion) &lt; '16.8'" />
6-
<Error Text="ThisAssembly uses Roslyn source generators, which are only supported in C# at the moment."
7-
Condition="'$(Language)' != 'C#'" />
6+
<!-- See https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/langversion-compiler-option -->
7+
<Error Text="ThisAssembly uses Roslyn source generators, which are only supported in C# 9.0 or greater at the moment."
8+
Condition="'$(Language)' != 'C#' OR
9+
('$(LangVersion)' != 'preview' AND
10+
'$(LangVersion)' != 'latest' AND
11+
'$(LangVersion)' != 'latestMajor' AND
12+
'$(LangVersion)' &lt; '9.0')" />
813
</Target>
914

1015
</Project>

0 commit comments

Comments
 (0)