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
Copy file name to clipboardExpand all lines: src/VirtualClient/VirtualClient.Contracts/VirtualClientComponent.cs
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -377,7 +377,7 @@ protected set
377
377
/// placeholders and well-known terms to be replaced in the values of the parameters before
378
378
/// execution of workloads, monitors or dependencies.
379
379
/// </summary>
380
-
publicboolParametersEvaluated{get;internalset;}
380
+
publicboolParametersEvaluated{get;protectedset;}
381
381
382
382
/// <summary>
383
383
/// The OS/system platform (e.g. Windows, Unix).
@@ -659,6 +659,28 @@ public static bool IsSupported(VirtualClientComponent component)
659
659
returnplatformSupported&&component.IsSupported();
660
660
}
661
661
662
+
/// <summary>
663
+
/// Evaluates each of the parameters provided to the component to replace
664
+
/// supported placeholder expressions (e.g. {PackagePath:anytool} -> replace with path to 'anytool' package).
665
+
/// </summary>
666
+
/// <param name="cancellationToken">A token that can be used to cancel the operations.</param>
667
+
/// <param name="force">Forces the evaluation of the parameters for scenarios where re-evaluation is necessary after an initial pass. Default = false.</param>
Copy file name to clipboardExpand all lines: src/VirtualClient/VirtualClient.Contracts/VirtualClientComponentExtensions.cs
-25Lines changed: 0 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -220,31 +220,6 @@ public static IEnumerable<FileUploadDescriptor> CreateFileUploadDescriptors(this
220
220
returndescriptors;
221
221
}
222
222
223
-
/// <summary>
224
-
/// Evaluates each of the parameters provided to the component to replace
225
-
/// supported placeholder expressions (e.g. {PackagePath:anytool} -> replace with path to 'anytool' package).
226
-
/// </summary>
227
-
/// <param name="component">The component whose parameters to evaluate.</param>
228
-
/// <param name="cancellationToken">A token that can be used to cancel the operations.</param>
229
-
/// <param name="force">Forces the evaluation of the parameters for scenarios where re-evaluation is necessary after an initial pass. Default = false.</param>
0 commit comments