Skip to content

Commit 6b83269

Browse files
authored
Remove default BuildInParallel attributes (#65378)
Cleanup: Remove BuildInParallel=false attributes which are the default setting.
1 parent 0addc44 commit 6b83269

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

eng/Subsets.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269

270270
<ItemGroup Condition="$(_subset.Contains('+clr.packages+')) and '$(PgoInstrument)' != 'true'">
271271
<ProjectToBuild Include="$(CoreClrProjectRoot).nuget\coreclr-packages.proj" Pack="true" Category="clr" />
272-
<ProjectToBuild Include="$(CoreClrProjectRoot)tools\dotnet-pgo\dotnet-pgo-pack.proj" Pack="true" BuildInParallel="false" Category="clr" Condition="'$(DotNetBuildFromSource)' != 'true' and '$(RuntimeFlavor)' != 'Mono'"/>
272+
<ProjectToBuild Include="$(CoreClrProjectRoot)tools\dotnet-pgo\dotnet-pgo-pack.proj" Pack="true" Category="clr" Condition="'$(DotNetBuildFromSource)' != 'true' and '$(RuntimeFlavor)' != 'Mono'"/>
273273
</ItemGroup>
274274

275275
<ItemGroup Condition="$(_subset.Contains('+clr.nativeaotlibs+')) and '$(NativeAotSupported)' == 'true'">
@@ -303,7 +303,7 @@
303303

304304
<!-- Host sets -->
305305
<ItemGroup Condition="$(_subset.Contains('+host.native+'))">
306-
<CorehostProjectToBuild Include="$(SharedNativeRoot)corehost\corehost.proj" SignPhase="Binaries" BuildInParallel="false" />
306+
<CorehostProjectToBuild Include="$(SharedNativeRoot)corehost\corehost.proj" SignPhase="Binaries" />
307307
<ProjectToBuild Include="@(CorehostProjectToBuild)" Pack="true" Category="host" />
308308
</ItemGroup>
309309

@@ -313,7 +313,7 @@
313313
</ItemGroup>
314314

315315
<ItemGroup Condition="$(_subset.Contains('+host.pkg+')) and '$(PgoInstrument)' != 'true'">
316-
<PkgprojProjectToBuild Include="$(InstallerProjectRoot)pkg\projects\host-packages.proj" SignPhase="MsiFiles" BuildInParallel="false" />
316+
<PkgprojProjectToBuild Include="$(InstallerProjectRoot)pkg\projects\host-packages.proj" SignPhase="MsiFiles" />
317317
<ProjectToBuild Include="@(PkgprojProjectToBuild)" Pack="true" Category="host" />
318318
</ItemGroup>
319319

@@ -390,12 +390,12 @@
390390
</ItemGroup>
391391

392392
<ItemGroup Condition="$(_subset.Contains('+publish+'))">
393-
<ProjectToBuild Include="$(InstallerProjectRoot)prepare-artifacts.proj" Pack="true" BuildInParallel="false" Category="publish" />
393+
<ProjectToBuild Include="$(InstallerProjectRoot)prepare-artifacts.proj" Pack="true" Category="publish" />
394394
</ItemGroup>
395395

396396
<!-- Utility -->
397397
<ItemGroup Condition="$(_subset.Contains('+regeneratedownloadtable+'))">
398-
<ProjectToBuild Include="$(RepositoryEngineeringDir)regenerate-download-table.proj" Pack="true" BuildInParallel="false" />
398+
<ProjectToBuild Include="$(RepositoryEngineeringDir)regenerate-download-table.proj" Pack="true" />
399399
</ItemGroup>
400400

401401
<!-- Set default configurations. -->

0 commit comments

Comments
 (0)