Skip to content

Commit 87174db

Browse files
authored
Sets the roll forward behavior for the tool to Major (#793)
* Sets the roll forward behavior for the tool to Major
1 parent 7410dd6 commit 87174db

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/TimeoutMigrationTool.Msmq.AcceptanceTests/MigrationRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void Run(string connectionString)
1414
var build = isDebug ? "Debug" : "Release";
1515

1616
var exePath = Path.GetFullPath(TestContext.CurrentContext.TestDirectory + $@"\..\..\..\..\TimeoutMigrationTool\bin\{build}\net8.0\TimeoutMigrationTool.dll");
17-
var args = $@"exec {exePath} migrate --allEndpoints sqlp --source ""{connectionString}"" --dialect MsSqlServer msmq --target ""{connectionString}""";
17+
var args = $@"{exePath} migrate --allEndpoints sqlp --source ""{connectionString}"" --dialect MsSqlServer msmq --target ""{connectionString}""";
1818
1919
var startInfo = new ProcessStartInfo("dotnet", args)
2020
{

src/TimeoutMigrationTool/TimeoutMigrationTool.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<ToolCommandName>migrate-timeouts</ToolCommandName>
1414
<PackAsTool>true</PackAsTool>
1515
<RootNamespace>Particular.TimeoutMigrationTool</RootNamespace>
16+
<RollForward>Major</RollForward>
1617
</PropertyGroup>
1718

1819
<ItemGroup>

0 commit comments

Comments
 (0)