You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ErrorText="ContainerArchiveOutputPath is invalid. It can only be a directory in multi-arch scenario because the runtime identifier is appended in the end of the filename."
301
-
Condition="'$(ContainerArchiveOutputPath)' != '' and
302
-
!$(ContainerArchiveOutputPath.EndsWith('/')) and
303
-
!$(ContainerArchiveOutputPath.EndsWith('\\')) and
301
+
Condition="'$(ContainerArchiveOutputPath)' != '' and
Condition="'$(IsPublishable)' == 'true' AND '$(EnableSdkContainerSupport)' == 'true'">
401
401
<PropertyGroup>
402
402
<_IsMultiTFMBuildCondition="'$(TargetFrameworks)' != '' and '$(TargetFramework)' == ''">true</_IsMultiTFMBuild>
403
-
<_IsMultiRIDBuildCondition="'$(BuildingInsideVisualStudio)' != 'true' and (('$(RuntimeIdentifiers)' != '' and '$(RuntimeIdentifier)' == '') or ('$(ContainerRuntimeIdentifiers)' != '' and '$(ContainerRuntimeIdentifier)' == ''))">true</_IsMultiRIDBuild>
403
+
<!-- we are multi-RID if:
404
+
* we have CRIDs and no CRID
405
+
* we have RIDs and no (CRIDs or CRID or RID)
406
+
-->
407
+
<_HasCRIDsAndNoCRIDCondition="'$(ContainerRuntimeIdentifiers)' != '' and '$(ContainerRuntimeIdentifier)' == ''">true</_HasCRIDsAndNoCRID>
<_NoCRIDsOrCRIDorRIDCondition="'$(ContainerRuntimeIdentifiers)' == '' and '$(ContainerRuntimeIdentifier)' == '' and '$(RuntimeIdentifier)' == ''">true</_NoCRIDsOrCRIDorRID>
410
+
<_IsMultiRIDBuildCondition="'$(BuildingInsideVisualStudio)' != 'true' and ('$(_HasCRIDsAndNoCRID)' == true or ('$(_HasRIDs)' == 'true' and '$(_NoCRIDsOrCRIDorRID)' == 'true'))">true</_IsMultiRIDBuild>
0 commit comments