Skip to content

Commit f3b5b27

Browse files
[release/9.0] Disable parallel restore for Grpc JsonTranscoding (#65072)
* Disable parallel restore for Grpc JsonTranscoding * Update Microsoft.Internal.Aspnetcore.DotNetApiDocs.Transport.csproj * Disable parallel restore for BuildAfterTargetingPack projects (#65107) * Revert "Disable parallel restore for Grpc JsonTranscoding (#65040)" This reverts commit d3f0774. * Disable parallel build for delayed build projects --------- Co-authored-by: William Godbe <wigodbe@microsoft.com>
1 parent b45f43a commit f3b5b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BuildAfterTargetingPack/BuildAfterTargetingPack.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
Condition=" '$(DotNetBuild)' != 'true' "
4545
Returns="@(TargetPathWithTargetPlatformMoniker)">
4646
<MSBuild Projects="@(RequiresDelayedBuild)"
47-
BuildInParallel="$(BuildInParallel)"
48-
Properties="MSBuildRestoreSessionId=$([System.Guid]::NewGuid())"
47+
BuildInParallel="false"
48+
Properties="MSBuildRestoreSessionId=$([System.Guid]::NewGuid());RestoreDisableParallel=true"
4949
Targets="Restore" />
5050
<MSBuild Projects="@(RequiresDelayedBuild)" BuildInParallel="$(BuildInParallel)" Targets="Build">
5151
<Output TaskParameter="TargetOutputs" ItemName="TargetPathWithTargetPlatformMoniker" />

0 commit comments

Comments
 (0)