Skip to content

Commit 989a183

Browse files
authored
Bump Roslyn to 4.7.0 (CLI + Testing framework) (#1218)
1 parent 2da0658 commit 989a183

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

ChangeLog.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
- Update logo ([#1208](https://github.com/dotnet/roslynator/pull/1208), [#1210](https://github.com/dotnet/roslynator/pull/1210)).
1717
- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206), [#1207](https://github.com/dotnet/roslynator/pull/1207)).
18+
- Bump Roslyn to 4.7.0 ([#1218](https://github.com/dotnet/roslynator/pull/1218)).
19+
- Applies to CLI and testing library.
1820

1921
### Fixed
2022

src/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<Version Condition="'$(Version)' == ''">1.0.0</Version>
1616
<RoslynatorRoslynVersion>4.4.0</RoslynatorRoslynVersion>
1717
<RoslynatorRoslynAnalyzersVersion>3.3.4</RoslynatorRoslynAnalyzersVersion>
18-
<RoslynatorCliRoslynVersion>4.6.0</RoslynatorCliRoslynVersion>
19-
<RoslynatorTestingRoslynVersion>4.6.0</RoslynatorTestingRoslynVersion>
18+
<RoslynatorCliRoslynVersion>4.7.0</RoslynatorCliRoslynVersion>
19+
<RoslynatorTestingRoslynVersion>4.7.0</RoslynatorTestingRoslynVersion>
2020
<RoslynatorCliPackageVersion>$(RoslynatorCliVersion)</RoslynatorCliPackageVersion>
2121
<RoslynatorPackageVersion>$(Version)</RoslynatorPackageVersion>
2222
<RoslynatorVersion>$(RoslynatorPackageVersion)</RoslynatorVersion>

src/Tests/CSharp.Tests/SyntaxKindTests.cs

+4
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,10 @@ public static void DetectNewSyntaxKinds()
584584
// new in 4.4.0
585585
case SyntaxKind.FileKeyword:
586586
case SyntaxKind.ScopedType:
587+
// new in 4.7.0
588+
case SyntaxKind.CollectionExpression:
589+
case SyntaxKind.ExpressionElement:
590+
case SyntaxKind.SpreadElement:
587591
{
588592
break;
589593
}

0 commit comments

Comments
 (0)