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
/// Deploy a list of assemblies to the device and optionally reboot it.
3320
+
/// </summary>
3321
+
/// <param name="assemblies">A collection of assemblies to deploy.</param>
3322
+
/// <param name="rebootAfterDeploy"><see langword="true"/> to reboot device after a successfull deployment.</param>
3323
+
/// <param name="skipErase"><see langword="true"/> to skip erasing the storage block before writting to it.</param>
3324
+
/// <param name="progress">An <see cref="IProgress<MessageWithProgress>"/> object to track the progress of the deploy operation.</param>
3325
+
/// <param name="log">An <see cref="IProgress<String>"/> object to log the progress of the deploy operation.</param>
3326
+
/// <returns><see langword="true"/> upon a successfull deployment operation. <see langword="false"/> otherwise.</returns>
3327
+
/// <exception cref="NotSupportedException">In case the connected device doesn't have support for incremental deployment.</exception>
3311
3328
publicboolDeploymentExecute(
3312
3329
List<byte[]>assemblies,
3313
3330
boolrebootAfterDeploy=true,
@@ -3347,9 +3364,6 @@ public bool DeploymentExecute(
3347
3364
else
3348
3365
{
3349
3366
thrownewNotSupportedException("Current version only supports incremental deployment. Check the image source code for Debugging_Execution_QueryCLRCapabilities. The capabilities list has to include c_CapabilityFlags_IncrementalDeployment.");
3350
-
//progress?.Report("Deploying assemblies to device");
0 commit comments