Skip to content
This repository has been archived by the owner on Jun 17, 2019. It is now read-only.

Commit

Permalink
Develop (#24)
Browse files Browse the repository at this point in the history
* Fixing issue where calls to powershell scripts aren't being translated properly. Fixes issue #16

* Script generation when the action to run isn't an extracted tool has been changed to only include the command and the arguments.

* Corrected unit test that was passing when it should be failing; added a new minimal repro test case for the scenario. Issue #20

* Variables should be correctly remapped when variable name + value occurs across multiple actions. Fixes issue #20

* Added support for RM Server 2015 Update 3. Fixes issue #23
  • Loading branch information
DanielBMann9000 authored Jul 4, 2016
1 parent 3c9445f commit 18b83cf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/RMWorkflowMigrator.CmdLine/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public static class Program
{ "12.0.31101.0", true },
{ "14.0.23102.0", true },
{ "14.0.24712.0", true },
{ "14.95.25118.0", true }
{ "14.95.25118.0", true },
{ "14.0.25420.1", true }
};

private static readonly Dictionary<string, string> VersionMapping = new Dictionary<string, string>
Expand All @@ -55,7 +56,9 @@ public static class Program
{ "12.0.31101.0", "2013 Update 4" },
{ "14.0.23102.0", "2015 RTM" },
{ "14.0.24712.0", "2015 Update 1" },
{ "14.95.25118.0", "2015 Update 2" }
{ "14.95.25118.0", "2015 Update 2" },
{ "14.0.25420.1", "2015 Update 3" }

};

private static Options options;
Expand Down

0 comments on commit 18b83cf

Please sign in to comment.