-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Update Roslyn and use new step tracking API in incremental tests. #63978
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
544fa8a
Update out-of-band generators to explicitly reference pinned versions…
jkoritzinsky 1e4f98f
Update Roslyn and update the DllImportGenerator incremental generatio…
jkoritzinsky 1f5ea02
Bump Roslyn to get the bugfix and finish updating the incremental gen…
jkoritzinsky cbe6dc2
Merge branch 'main' into update-roslyn
jkoritzinsky 4e491b2
Merge branch 'main' of github.com:dotnet/runtime into update-roslyn
jkoritzinsky 8cdb7d0
Escape per CS8981 throughout the repo.
jkoritzinsky c40fcb2
Fix build
jkoritzinsky 0b06bd9
Import test_dependencies' nuget-generated props/targets since we don'…
jkoritzinsky bfc324a
Merge branch 'main' of github.com:dotnet/runtime into update-roslyn
jkoritzinsky cd57d2b
Unify roslyn version.
jkoritzinsky 4a7b84d
Remove some extraneous escapes in comments
jkoritzinsky ea30f83
Fix build failures other than the binary/text issue.
jkoritzinsky 979ca2f
Merge branch 'main' of github.com:dotnet/runtime into update-roslyn
jkoritzinsky 1bb9514
Update compiler toolset to get dotnet/roslyn#59578
jkoritzinsky bfb3115
Update Roslyn version again to get latest fix.
jkoritzinsky 100f65c
Merge branch 'main' into update-roslyn
jkoritzinsky b44c0ec
PR feedback and update Roslyn again now that Chris has actually put i…
jkoritzinsky cc60244
Disable capitalization warning in the src/tests tree
jkoritzinsky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,7 @@ | |
| <UsingToolMicrosoftNetILLinkTasks>true</UsingToolMicrosoftNetILLinkTasks> | ||
| <UsingToolIbcOptimization>false</UsingToolIbcOptimization> | ||
| <UsingToolXliff>false</UsingToolXliff> | ||
| <UsingToolMicrosoftNetCompilers>true</UsingToolMicrosoftNetCompilers> | ||
| <LastReleasedStableAssemblyVersion>$(AssemblyVersion)</LastReleasedStableAssemblyVersion> | ||
| </PropertyGroup> | ||
| <!-- | ||
|
|
@@ -39,18 +40,23 @@ | |
| <!-- Targeting packs are only patched in extreme cases. --> | ||
| <ProjectServicingConfiguration Include="Microsoft.NETCore.App.Ref" PatchVersion="0" /> | ||
| </ItemGroup> | ||
| <!-- | ||
| For source generator support we need to target multiple versions of Rolsyn in order to be able to run on older versions of Roslyn. | ||
| We pin these versions as we need to match them exactly for any scenarios that run Roslyn on .NET Framework, like Visual Studio. | ||
| --> | ||
| <PropertyGroup> | ||
| <!-- For source generator support we need to target multiple versions of Rolsyn in order to be able to run on older versions of Roslyn --> | ||
| <MicrosoftCodeAnalysisCSharpWorkspacesVersion_3_11>3.11.0</MicrosoftCodeAnalysisCSharpWorkspacesVersion_3_11> | ||
| <MicrosoftCodeAnalysisCSharpWorkspacesVersion>4.0.1</MicrosoftCodeAnalysisCSharpWorkspacesVersion> | ||
| <MicrosoftCodeAnalysisVersion>4.0.1</MicrosoftCodeAnalysisVersion> | ||
| <MicrosoftCodeAnalysisVersion_3_11>3.11.0</MicrosoftCodeAnalysisVersion_3_11> | ||
| <MicrosoftCodeAnalysisVersion_4_0>4.0.1</MicrosoftCodeAnalysisVersion_4_0> | ||
| </PropertyGroup> | ||
| <PropertyGroup> | ||
| <!-- Code analysis dependencies --> | ||
| <MicrosoftCodeAnalysisAnalyzersVersion>3.3.2</MicrosoftCodeAnalysisAnalyzersVersion> | ||
| <MicrosoftCodeAnalysisCSharpCodeStyleVersion>4.0.1</MicrosoftCodeAnalysisCSharpCodeStyleVersion> | ||
| <MicrosoftCodeAnalysisCSharpVersion>4.0.1</MicrosoftCodeAnalysisCSharpVersion> | ||
| <MicrosoftCodeAnalysisAnalyzersVersion>3.3.3</MicrosoftCodeAnalysisAnalyzersVersion> | ||
| <MicrosoftCodeAnalysisCSharpCodeStyleVersion>4.2.0-1.22070.6</MicrosoftCodeAnalysisCSharpCodeStyleVersion> | ||
| <MicrosoftCodeAnalysisCSharpWorkspacesVersion>4.2.0-1.22070.6</MicrosoftCodeAnalysisCSharpWorkspacesVersion> | ||
| <MicrosoftCodeAnalysisCSharpVersion>4.2.0-1.22070.6</MicrosoftCodeAnalysisCSharpVersion> | ||
| <MicrosoftCodeAnalysisNetAnalyzersVersion>7.0.0-preview1.22067.1</MicrosoftCodeAnalysisNetAnalyzersVersion> | ||
| <MicrosoftCodeAnalysisVersion>4.2.0-1.22070.6</MicrosoftCodeAnalysisVersion> | ||
| <MicrosoftNetCompilersToolsetVersion>4.2.0-1.22070.6</MicrosoftNetCompilersToolsetVersion> | ||
|
||
| <!-- SDK dependencies --> | ||
| <MicrosoftDotNetCompatibilityVersion>2.0.0-alpha.1.21525.11</MicrosoftDotNetCompatibilityVersion> | ||
| <!-- Arcade dependencies --> | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
....Logging.Generators.Tests/Microsoft.Extensions.Logging.Generators.Roslyn3.11.Tests.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...s.Logging.Generators.Tests/Microsoft.Extensions.Logging.Generators.Roslyn4.0.Tests.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.