-
Notifications
You must be signed in to change notification settings - Fork 416
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
Update Roslyn to 4.13.0-3.24620.4 #2642
base: master
Are you sure you want to change the base?
Conversation
@@ -47,7 +45,7 @@ protected OmniSharpTestHost CreateMSBuildTestHost(string path, IEnumerable<Expor | |||
IConfiguration configurationData = null) | |||
{ | |||
var environment = new OmniSharpEnvironment(path, logLevel: LogLevel.Trace); | |||
var serviceProvider = TestServiceProvider.Create(this.TestOutput, environment, this.LoggerFactory, _assemblyLoader, _analyzerAssemblyLoader, _msbuildLocator, | |||
var serviceProvider = TestServiceProvider.Create(this.TestOutput, environment, this.LoggerFactory, _assemblyLoader, ShadowCopyAnalyzerAssemblyLoader.CreateShadowCopyLoader(), _msbuildLocator, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can no longer use one assembly loader for all the test runs because it now gets disposed with the other test services. See dotnet/roslyn#74845
@@ -87,7 +87,7 @@ public static IServiceProvider Create( | |||
var configuration = CreateConfiguration(configurationData); | |||
var msbuildLocator = CreateMSBuildLocator(loggerFactory, assemblyLoader, configurationData); | |||
var sharedTextWriter = CreateSharedTextWriter(testOutput); | |||
var analyzerAssemblyLoader = ShadowCopyAnalyzerAssemblyLoader.Instance; | |||
var analyzerAssemblyLoader = ShadowCopyAnalyzerAssemblyLoader.CreateShadowCopyLoader(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another case where tests cannot share the same assembly loader.
@@ -120,7 +120,7 @@ private async Task VerifyImplementType(string code, string expectedChange, Dicti | |||
Column = point.Offset, | |||
FileName = testFile.FileName, | |||
Buffer = testFile.Content.Code, | |||
Identifier = "False;False;True:global::IFoo;AssemblyName;Microsoft.CodeAnalysis.ImplementInterface.AbstractImplementInterfaceService+ImplementInterfaceCodeAction;", | |||
Identifier = "False;False;True:global::IFoo;Microsoft.CodeAnalysis.ImplementInterface.AbstractImplementInterfaceService+ImplementInterfaceCodeAction;", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assembly Name removed in dotnet/roslyn@9c8c21f
Directory.Packages.props
Outdated
<NuGetPackageVersion>6.11.0-rc.110</NuGetPackageVersion> | ||
<RoslynPackageVersion>4.12.0-1.24358.3</RoslynPackageVersion> | ||
<NuGetPackageVersion>6.13.0-rc.95</NuGetPackageVersion> | ||
<RoslynPackageVersion>4.13.0-3.24617.3</RoslynPackageVersion> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will need to be updated once dotnet/roslyn#75312 merges
@@ -187,7 +187,7 @@ public async Task C2() { | |||
Operator("="), | |||
String("\"hello\""), | |||
Punctuation(";"), | |||
Keyword("await"), | |||
ControlKeyword("await"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed in dotnet/roslyn#75782
@@ -85,7 +85,7 @@ public Class1(string propertyHere) | |||
public string PropertyHere { get; set; } | |||
}"; | |||
var response = await RunRefactoringAsync(code, "Generate constructor..."); | |||
var response = await RunRefactoringAsync(code, "Generate constructor from members..."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed in dotnet/roslyn#76328
@@ -25,7 +25,7 @@ public class ScriptProjectProvider | |||
private const string IgnoreCorLibraryDuplicatedTypesField = "IgnoreCorLibraryDuplicatedTypes"; | |||
private const string RuntimeMetadataReferenceResolverType = "Microsoft.CodeAnalysis.Scripting.Hosting.RuntimeMetadataReferenceResolver"; | |||
private const string ResolverField = "_resolver"; | |||
private const string FileReferenceProviderField = "_fileReferenceProvider"; | |||
private const string CreateFromFileFuncField = "_createFromFileFunc"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed in dotnet/roslyn#75372
No description provided.