Skip to content

Commit bbae441

Browse files
committed
deltawalker for windows
1 parent bf097df commit bbae441

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

src/DiffEngine/Implementation/DeltaWalker.cs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
static partial class Implementation
44
{
5-
public static Definition DeltaWalker() =>
6-
new Definition(
5+
public static Definition DeltaWalker()
6+
{
7+
string Arguments(string temp, string target) =>
8+
$"-mi \"{temp}\" \"{target}\"";
9+
10+
return new Definition(
711
name: DiffTool.DeltaWalker,
812
url: "https://www.deltawalker.com/",
913
autoRefresh: false,
@@ -47,8 +51,12 @@ public static Definition DeltaWalker() =>
4751
"htm"
4852
},
4953
osx: new OsSettings(
50-
(temp, target) => $"-mi \"{temp}\" \"{target}\"",
54+
Arguments,
5155
"/Applications/DeltaWalker.app/Contents/MacOS/DeltaWalker"),
56+
windows: new OsSettings(
57+
Arguments,
58+
@"C:\Program Files\Deltopia\DeltaWalker\DeltaWalker.exe"),
5259
notes: @"
5360
* [Command line usage](https://www.deltawalker.com/integrate/command-line)");
61+
}
5462
}

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<NoWarn>CS1591;CS0649</NoWarn>
5-
<Version>3.0.0</Version>
5+
<Version>3.0.1</Version>
66
<AssemblyVersion>1.0.0.0</AssemblyVersion>
77
<PackageTags>Json, Testing, Verify, Snapshot, Approvals</PackageTags>
88
<Description>Enables simple verification of complex models and documents.</Description>

0 commit comments

Comments
 (0)