This repository has been archived by the owner on Jun 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from ALM-Rangers/develop
Manual interventions in rollback blocks should not crash the application
- Loading branch information
Showing
5 changed files
with
94 additions
and
69 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/RMWorkflowMigrator.Generator.PowerShell/Model/RollbackActionResolutionResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="RollbackActionResolutionResult.cs" company="Microsoft Corporation"> | ||
// Copyright Microsoft Corporation. All Rights Reserved. This code released under the terms of the MIT License (MIT, https://github.com/ALM-Rangers/Migrate-assets-from-RM-server-to-VSO/blob/master/License.txt). This is sample code only, do not use in production environments. | ||
// </copyright> | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
|
||
namespace Microsoft.ALMRangers.RMWorkflowMigrator.Generator.PowerShell.Model | ||
{ | ||
using System.Collections.Generic; | ||
|
||
public class RollbackActionResolutionResult | ||
{ | ||
public IEnumerable<ScriptAction> Actions { get; set; } | ||
public IEnumerable<ScriptManualIntervention> ManualInterventions { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.