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
The "filesource" parameter set for Set-SitecoreCommercePolicy was removed as it added unnecessary complexity, but it could easily be restored by adding a Get-SitecoreCommercePolicy.
Usecases would be:
# Merge policies and their properties from another policy file
Get-SitecoreCommercePolicy -Path "source.json" | Set-SItecoreCommercePolicy -Path "target.json"
# Add policies if they don't exist on the target
Get-SitecoreCommercePolicy -Path "source.json" | Set-SItecoreCommercePolicy -Path "target.json" -Force
(The pipelining isn't currently supported by Set, so that change will be required too)
The text was updated successfully, but these errors were encountered:
The "filesource" parameter set for
Set-SitecoreCommercePolicy
was removed as it added unnecessary complexity, but it could easily be restored by adding aGet-SitecoreCommercePolicy
.Usecases would be:
(The pipelining isn't currently supported by
Set
, so that change will be required too)The text was updated successfully, but these errors were encountered: