File tree Expand file tree Collapse file tree 4 files changed +5
-30
lines changed
DiffEngine/Implementation Expand file tree Collapse file tree 4 files changed +5
-30
lines changed Original file line number Diff line number Diff line change @@ -403,21 +403,14 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
403
403
* Example target on left arguments: ` diff "targetFile.txt" "tempFile.txt" `
404
404
* Example target on right arguments: ` diff "tempFile.txt" "targetFile.txt" `
405
405
* Scanned paths:
406
- * ` %LOCALAPPDATA%\JetBrains\Installations\Rider*\bin\rider64.exe `
407
- * ` %ProgramFiles%\JetBrains\JetBrains Rider *\bin\rider64.exe `
408
- * ` %ProgramW6432%\JetBrains\JetBrains Rider *\bin\rider64.exe `
409
- * ` %ProgramFiles(x86)%\JetBrains\JetBrains Rider *\bin\rider64.exe `
410
- * ` %LOCALAPPDATA%\JetBrains\Toolbox\apps\Rider\*\*\bin\rider64.exe `
406
+ * ` %LOCALAPPDATA%\Programs\Rider\bin\rider64.exe `
411
407
* ` %PATH%rider64.exe `
412
408
413
409
#### OSX settings:
414
410
415
411
* Example target on left arguments: ` diff "targetFile.txt" "tempFile.txt" `
416
412
* Example target on right arguments: ` diff "tempFile.txt" "targetFile.txt" `
417
413
* Scanned paths:
418
- * ` %HOME%/Library/Application Support/JetBrains/Toolbox/apps/Rider/*/*/Rider EAP.app/Contents/MacOS/rider `
419
- * ` %HOME%/Library/Application Support/JetBrains/Toolbox/apps/Rider/*/*/Rider.app/Contents/MacOS/rider `
420
- * ` /Applications/Rider EAP.app/Contents/MacOS/rider `
421
414
* ` /Applications/Rider.app/Contents/MacOS/rider `
422
415
* ` %PATH%rider `
423
416
@@ -427,8 +420,6 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
427
420
* Example target on right arguments: ` diff "tempFile.txt" "targetFile.txt" `
428
421
* Scanned paths:
429
422
* ` %HOME%/.local/share/JetBrains/Toolbox/apps/Rider/*/*/bin/rider.sh `
430
- * ` /opt/jetbrains/rider/bin/rider.sh `
431
- * ` /usr/share/rider/bin/rider.sh `
432
423
* ` %PATH%rider.sh `
433
424
434
425
### [ TkDiff] ( https://sourceforge.net/projects/tkdiff/ )
Original file line number Diff line number Diff line change @@ -290,21 +290,14 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
290
290
* Example target on left arguments: ` diff "targetFile.txt" "tempFile.txt" `
291
291
* Example target on right arguments: ` diff "tempFile.txt" "targetFile.txt" `
292
292
* Scanned paths:
293
- * ` %LOCALAPPDATA%\JetBrains\Installations\Rider*\bin\rider64.exe `
294
- * ` %ProgramFiles%\JetBrains\JetBrains Rider *\bin\rider64.exe `
295
- * ` %ProgramW6432%\JetBrains\JetBrains Rider *\bin\rider64.exe `
296
- * ` %ProgramFiles(x86)%\JetBrains\JetBrains Rider *\bin\rider64.exe `
297
- * ` %LOCALAPPDATA%\JetBrains\Toolbox\apps\Rider\*\*\bin\rider64.exe `
293
+ * ` %LOCALAPPDATA%\Programs\Rider\bin\rider64.exe `
298
294
* ` %PATH%rider64.exe `
299
295
300
296
#### OSX settings:
301
297
302
298
* Example target on left arguments: ` diff "targetFile.txt" "tempFile.txt" `
303
299
* Example target on right arguments: ` diff "tempFile.txt" "targetFile.txt" `
304
300
* Scanned paths:
305
- * ` %HOME%/Library/Application Support/JetBrains/Toolbox/apps/Rider/*/*/Rider EAP.app/Contents/MacOS/rider `
306
- * ` %HOME%/Library/Application Support/JetBrains/Toolbox/apps/Rider/*/*/Rider.app/Contents/MacOS/rider `
307
- * ` /Applications/Rider EAP.app/Contents/MacOS/rider `
308
301
* ` /Applications/Rider.app/Contents/MacOS/rider `
309
302
* ` %PATH%rider `
310
303
@@ -314,8 +307,6 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
314
307
* Example target on right arguments: ` diff "tempFile.txt" "targetFile.txt" `
315
308
* Scanned paths:
316
309
* ` %HOME%/.local/share/JetBrains/Toolbox/apps/Rider/*/*/bin/rider.sh `
317
- * ` /opt/jetbrains/rider/bin/rider.sh `
318
- * ` /usr/share/rider/bin/rider.sh `
319
310
* ` %PATH%rider.sh `
320
311
321
312
### [ TkDiff] ( https://sourceforge.net/projects/tkdiff/ )
Original file line number Diff line number Diff line change @@ -19,22 +19,15 @@ public static Definition Rider()
19
19
Windows : new (
20
20
"rider64.exe" ,
21
21
launchArguments ,
22
- @"%LOCALAPPDATA%\JetBrains\Installations\Rider*\bin\" ,
23
- @"%ProgramFiles%\JetBrains\JetBrains Rider *\bin\" ,
24
- @"%LOCALAPPDATA%\JetBrains\Toolbox\apps\Rider\*\*\bin\" ) ,
22
+ @"%LOCALAPPDATA%\Programs\Rider\bin\" ) ,
25
23
Osx : new (
26
24
"rider" ,
27
25
launchArguments ,
28
- "%HOME%/Library/Application Support/JetBrains/Toolbox/apps/Rider/*/*/Rider EAP.app/Contents/MacOS/" ,
29
- "%HOME%/Library/Application Support/JetBrains/Toolbox/apps/Rider/*/*/Rider.app/Contents/MacOS/" ,
30
- "/Applications/Rider EAP.app/Contents/MacOS/" ,
31
26
"/Applications/Rider.app/Contents/MacOS/" ) ,
32
27
Linux : new (
33
28
"rider.sh" ,
34
29
launchArguments ,
35
- "%HOME%/.local/share/JetBrains/Toolbox/apps/Rider/*/*/bin/" ,
36
- "/opt/jetbrains/rider/bin/" ,
37
- "/usr/share/rider/bin/" ) ) ,
30
+ "%HOME%/.local/share/JetBrains/Toolbox/apps/Rider/*/*/bin/" ) ) ,
38
31
Notes : " * https://www.jetbrains.com/help/rider/Command_Line_Differences_Viewer.html" ) ;
39
32
}
40
33
}
Original file line number Diff line number Diff line change 2
2
<Project >
3
3
<PropertyGroup >
4
4
<NoWarn >CS1591;CS0649</NoWarn >
5
- <Version >12.0 .0</Version >
5
+ <Version >12.1 .0</Version >
6
6
<AssemblyVersion >1.0.0</AssemblyVersion >
7
7
<PackageTags >Testing, Snapshot, Diff, Compare</PackageTags >
8
8
<Description >Launches diff tools based on file extensions. Designed to be consumed by snapshot testing libraries.</Description >
You can’t perform that action at this time.
0 commit comments