Skip to content

Commit

Permalink
Fix PR collisions (#74652)
Browse files Browse the repository at this point in the history
  • Loading branch information
chsienki authored Aug 5, 2024
1 parent 3328d04 commit daef2f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Workspaces/Core/Portable/Workspace/Solution/Solution.cs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ public Solution WithProjectDocumentsOrder(ProjectId projectId, ImmutableList<Doc
internal Solution WithProjectAttributes(ProjectInfo.ProjectAttributes attributes)
{
CheckContainsProject(attributes.Id);
return WithCompilationState(_compilationState.WithProjectAttributes(attributes));
return WithCompilationState(CompilationState.WithProjectAttributes(attributes));
}

/// <summary>
Expand All @@ -567,7 +567,7 @@ internal Solution WithProjectAttributes(ProjectInfo.ProjectAttributes attributes
internal Solution WithProjectInfo(ProjectInfo info)
{
CheckContainsProject(info.Id);
return WithCompilationState(_compilationState.WithProjectInfo(info));
return WithCompilationState(CompilationState.WithProjectInfo(info));
}

/// <summary>
Expand Down

0 comments on commit daef2f2

Please sign in to comment.