Skip to content

Commit b36e892

Browse files
committed
PR feedback
1 parent 827d18b commit b36e892

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Razor/src/Microsoft.AspNetCore.Razor.LanguageServer/ProjectSystem/RazorProjectService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ private Task AddOrUpdateProjectCoreAsync(
376376
configuration = FallbackRazorConfiguration.Latest;
377377
_logger.LogInformation($"Updating project '{project.Key}' to use the latest configuration ('{configuration.ConfigurationName}')'.");
378378
}
379-
else if (currentConfiguration.Equals(configuration) &&
379+
else if (currentConfiguration == configuration &&
380380
currentRootNamespace == rootNamespace)
381381
{
382382
_logger.LogTrace($"Updating project '{project.Key}'. The project is already using configuration '{configuration.ConfigurationName}' and root namespace '{rootNamespace}'.");

0 commit comments

Comments
 (0)