We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40397d2 commit 49096d1Copy full SHA for 49096d1
com.playeveryware.eos/Runtime/Core/Config/ProductionEnvironments.cs
@@ -50,6 +50,25 @@ public ProductionEnvironments()
50
Sandboxes.SetRemovePredicate(CanSandboxBeRemoved);
51
}
52
53
+ /// <summary>
54
+ /// Indicates whether there is at least one complete deployment defined.
55
+ /// </summary>
56
+ public bool IsDeploymentDefined
57
+ {
58
+ get
59
60
+ foreach (var deployment in Deployments)
61
62
+ if (deployment.Value.IsComplete)
63
64
+ return true;
65
+ }
66
67
+
68
+ return false;
69
70
71
72
/// <summary>
73
/// Removes a Sandbox from the Production Environment.
74
/// </summary>
0 commit comments