Adds additional deploy selector. (#13094)

This commit is contained in:
Andy Butland
2022-10-03 13:14:18 +02:00
committed by GitHub
parent 3873a0735c
commit 7963b76d57
2 changed files with 2 additions and 0 deletions

View File

@@ -12,5 +12,6 @@ public static partial class Constants
public const string ThisAndDescendants = "this-and-descendants";
public const string ChildrenOfThis = "children";
public const string DescendantsOfThis = "descendants";
public const string EntitiesOfType = "entities-of-type";
}
}

View File

@@ -34,6 +34,7 @@ public class UdiRange
case Constants.DeploySelector.DescendantsOfThis:
case Constants.DeploySelector.ThisAndChildren:
case Constants.DeploySelector.ThisAndDescendants:
case Constants.DeploySelector.EntitiesOfType:
Selector = selector;
_uriValue = new Uri(Udi + "?" + selector);
break;