Skip to content

Commit baa72e6

Browse files
committed
docs
1 parent 465e3d4 commit baa72e6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/diff-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,10 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
158158
* Example target on left arguments: `/solo /rightreadonly /nobackups "targetFile.txt" "tempFile.txt" `
159159
* Example target on right arguments: `/solo /leftreadonly /nobackups "tempFile.txt" "targetFile.txt" `
160160
* Scanned paths:
161-
* `%LOCALAPPDATA%\Programs\Beyond Compare *\BCompare.exe`
162161
* `%ProgramFiles%\Beyond Compare *\BCompare.exe`
163162
* `%ProgramW6432%\Beyond Compare *\BCompare.exe`
164163
* `%ProgramFiles(x86)%\Beyond Compare *\BCompare.exe`
164+
* `%LOCALAPPDATA%\Programs\Beyond Compare *\BCompare.exe`
165165
* `%PATH%BCompare.exe`
166166

167167
#### OSX settings:

src/DiffEngine.Tests/DiffRunnerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NET8_0
1+
#if NET9_0
22
public class DiffRunnerTests :
33
XunitContextBase
44
{

src/DiffEngine.Tests/diffTools.include.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
2323
* Example target on left arguments: `/solo /rightreadonly /nobackups "targetFile.txt" "tempFile.txt" `
2424
* Example target on right arguments: `/solo /leftreadonly /nobackups "tempFile.txt" "targetFile.txt" `
2525
* Scanned paths:
26-
* `%LOCALAPPDATA%\Programs\Beyond Compare *\BCompare.exe`
2726
* `%ProgramFiles%\Beyond Compare *\BCompare.exe`
2827
* `%ProgramW6432%\Beyond Compare *\BCompare.exe`
2928
* `%ProgramFiles(x86)%\Beyond Compare *\BCompare.exe`
29+
* `%LOCALAPPDATA%\Programs\Beyond Compare *\BCompare.exe`
3030
* `%PATH%BCompare.exe`
3131

3232
#### OSX settings:

src/DiffEngine/Implementation/BeyondCompare.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ static string RightOsxLinuxArguments(string temp, string target) =>
4444
new(
4545
LeftWindowsArguments,
4646
RightWindowsArguments),
47-
@"%LOCALAPPDATA%\Programs\Beyond Compare *\",
48-
@"%ProgramFiles%\Beyond Compare *\"),
47+
@"%ProgramFiles%\Beyond Compare *\",
48+
@"%LOCALAPPDATA%\Programs\Beyond Compare *\"),
4949
Linux: new(
5050
"bcompare",
5151
new(

0 commit comments

Comments
 (0)