-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
Milestone
Description
Once dotnet/sdk#47338 is merged, we can remove the logic below as the VMR should drive it:
Lines 41 to 52 in 891ff91
| <!-- | |
| Allow the VMR orchestrator to control whether or not to build rid-specific artifacts, | |
| but provide defaults until the VMR orchestrator provides controls in all scenarios. | |
| --> | |
| <PropertyGroup Condition="'$(EnableDefaultRidSpecificArtifacts)' == ''"> | |
| <!-- Source-build always needs all artifacts to be published. --> | |
| <EnableDefaultRidSpecificArtifacts Condition="'$(DotNetBuildSourceOnly)' != ''">false</EnableDefaultRidSpecificArtifacts> | |
| <!-- Short-stack builds should always only publish RID-specific artifacts. --> | |
| <EnableDefaultRidSpecificArtifacts Condition="'$(ShortStack)' == 'true'">true</EnableDefaultRidSpecificArtifacts> | |
| <!-- If no override is specified, don't use RID-specific publishing. Instead, publish everything. --> | |
| <EnableDefaultRidSpecificArtifacts Condition="'$(EnableDefaultRidSpecificArtifacts)' == ''">false</EnableDefaultRidSpecificArtifacts> | |
| </PropertyGroup> |
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done