├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── merge-dependabot.yml │ └── on-push-do-docs.yml ├── .gitignore ├── appveyor.yml ├── code_of_conduct.md ├── docs ├── AraxisRefresh.png ├── code-versus-machine-settings.md ├── diff-tool.custom.md ├── diff-tool.md ├── diff-tool.order.md ├── image-diff-result.png ├── mdsource │ ├── code-versus-machine-settings.source.md │ ├── diff-tool.custom.source.md │ ├── diff-tool.order.source.md │ ├── diff-tool.source.md │ ├── diffToolCleanup.include.md │ ├── doc-index.include.md │ ├── intro.include.md │ ├── readme.source.md │ ├── tray.source.md │ └── zzz.include.md ├── readme.md ├── resharper-ignore-spawned.png ├── resharper-spawned.png ├── rider-ignore-spawned.png ├── tray.md └── zzz.png ├── license.txt ├── readme.md ├── readme.source.md └── src ├── .editorconfig ├── DiffEngine.Tests ├── AssemblyLocation.cs ├── BuildServerDetectorTest.cs ├── DefinitionsTest.cs ├── DiffEngine.Tests.csproj ├── DiffEngineTrayTest.cs ├── DiffRunner.file1.txt ├── DiffRunner.file2.txt ├── DiffRunnerTests.cs ├── DiffToolsTest.cs ├── DirForSearch │ ├── dir1 │ │ └── TextFile2.txt │ └── dir2 │ │ └── TextFile1.txt ├── FakeDiffTool.cs ├── GlobalUsings.cs ├── LinuxOsxProcessTests.cs ├── ModuleInitializer.cs ├── OrderReaderTest.cs ├── OsSettingsResolverTest.cs ├── ProcessCleanupTests.cs ├── Spot_the_difference.png ├── WildcardFileFinderTests.cs ├── defaultOrder.include.md ├── diffToolList.include.md ├── diffTools.include.md ├── input.target.bin ├── input.target.png ├── input.target.txt ├── input.target.txtConvention ├── input.temp.bin ├── input.temp.png ├── input.temp.txt └── input.temp.txtConvention ├── DiffEngine.slnx ├── DiffEngine.slnx.DotSettings ├── DiffEngine ├── BuildArguments.cs ├── BuildServerDetector.cs ├── ClsCompliant.cs ├── ContinuousTestingDetector.cs ├── Definition.cs ├── Definitions.cs ├── DiffEngine.csproj ├── DiffRunner.cs ├── DiffRunner_Kill.cs ├── DiffTool.cs ├── DiffTools.cs ├── DiffTools_Add.cs ├── DiffTools_TryFind.cs ├── DisabledChecker.cs ├── EnvironmentHelper.cs ├── FodyWeavers.xml ├── Guard.cs ├── Implementation │ ├── AraxisMerge.cs │ ├── BeyondCompare.cs │ ├── Cursor.cs │ ├── DeltaWalker.cs │ ├── Diffinity.cs │ ├── ExamDiff.cs │ ├── Guiffy.cs │ ├── KDiff3.cs │ ├── Kaleidoscope.cs │ ├── Meld.cs │ ├── Neovim.cs │ ├── P4Merge.cs │ ├── Rider.cs │ ├── SublimeMerge.cs │ ├── TkDiff.cs │ ├── TortoiseGitIDiff.cs │ ├── TortoiseGitMerge.cs │ ├── TortoiseIDiff.cs │ ├── TortoiseMerge.cs │ ├── Vim.cs │ ├── VisualStudio.cs │ ├── VsCode.cs │ └── WinMerge.cs ├── InternalsVisibleTo.cs ├── LaunchArguments.cs ├── LaunchResult.cs ├── Logging.cs ├── MaxInstance.cs ├── OrderReader.cs ├── OsSettings.cs ├── OsSettingsResolver.cs ├── OsSupport.cs ├── Process │ ├── LinuxOsxProcess.cs │ ├── ProcessCleanup.cs │ ├── ProcessCommand.cs │ └── WindowsProcess.cs ├── ResolvedTool.cs ├── TargetPosition.cs ├── ToolsOrder.cs ├── Tray │ ├── DiffEngineTray.cs │ ├── JsonEscaping.cs │ └── PiperClient.cs └── WildcardFileFinder.cs ├── DiffEngineTray.Tests ├── AsyncTimerTests.cs ├── DiffEngineTray.Tests.csproj ├── HotKeyControlTests.Default.verified.png ├── HotKeyControlTests.WithKeys.verified.png ├── HotKeyControlTests.cs ├── MenuBuilderTest.DiffTempTarget.verified.png ├── MenuBuilderTest.Empty.verified.png ├── MenuBuilderTest.Full.verified.png ├── MenuBuilderTest.FullGrouped.verified.png ├── MenuBuilderTest.Grouped.verified.png ├── MenuBuilderTest.Many.verified.png ├── MenuBuilderTest.OnlyDelete.verified.png ├── MenuBuilderTest.OnlyMove.verified.png ├── MenuBuilderTest.cs ├── ModuleInitializer.cs ├── OptionsFormTests.Default.verified.png ├── OptionsFormTests.WithKeys.verified.png ├── OptionsFormTests.cs ├── PiperTest.Delete.verified.txt ├── PiperTest.DeleteJson.verified.txt ├── PiperTest.Move.verified.txt ├── PiperTest.MoveJson.verified.txt ├── PiperTest.SendOnly.verified.txt ├── PiperTest.cs ├── ProcessExTest.cs ├── RecordingTracker.cs ├── SettingsHelperTests.ReadWrite.verified.txt ├── SettingsHelperTests.cs ├── SolutionDirectoryFinderTests.Find.verified.txt ├── SolutionDirectoryFinderTests.cs ├── TrackerClearTest.cs ├── TrackerDeleteTest.cs ├── TrackerMoveTest.cs └── VersionReaderTest.cs ├── DiffEngineTray ├── AssemblyLocation.cs ├── AsyncTimer.cs ├── Controls │ └── MenuButton.cs ├── DiffEngineTray.csproj ├── DiffToolLauncher.cs ├── DirectoryLauncher.cs ├── ExceptionHandler.cs ├── Extensions.cs ├── FileComparer.cs ├── FileEx.cs ├── FilePurger.cs ├── FodyWeavers.xml ├── GlobalSuppressions.cs ├── GlobalUsings.cs ├── HotKey │ ├── HotKey.cs │ ├── KeyBindingIds.cs │ ├── KeyModifiers.cs │ └── KeyRegister.cs ├── Images │ ├── Images.cs │ ├── accept.png │ ├── acceptAll.png │ ├── active.ico │ ├── active.png │ ├── cogs.png │ ├── default.ico │ ├── default.png │ ├── delete.png │ ├── discard.png │ ├── exit.png │ ├── folder.png │ ├── link.png │ └── vs.png ├── InternalsVisibleTo.cs ├── IssueLauncher.cs ├── LinkLauncher.cs ├── Logging.cs ├── MenuBuilder.cs ├── Payloads │ ├── DeletePayload.cs │ └── MovePayload.cs ├── PiperServer.cs ├── ProcessEx.cs ├── Program.cs ├── Serializer.cs ├── Settings │ ├── HotKeyControl.Designer.cs │ ├── HotKeyControl.cs │ ├── HotKeyControl.resx │ ├── OptionsForm.Designer.cs │ ├── OptionsForm.cs │ ├── OptionsForm.resx │ ├── OptionsFormLauncher.cs │ ├── Settings.cs │ ├── SettingsHelper.cs │ └── SettingsValidator.cs ├── SolutionDirectoryFinder.cs ├── Startup.cs ├── TrackedDelete.cs ├── TrackedMove.cs ├── Tracker.cs ├── Updater.cs └── VersionReader.cs ├── Directory.Build.props ├── Directory.Packages.props ├── FakeDiffTool ├── FakeDiffTool.csproj └── Program.cs ├── Shared.sln.DotSettings ├── global.json ├── icon.png ├── images ├── checkmark-circle.svg ├── checkmark.svg ├── circle-minus.svg ├── cogs.svg ├── cross-circle.svg ├── exit.svg ├── folder-alt.svg ├── link.svg ├── noun_Gear_172042.png └── noun_Gear_172042Red.png ├── key.snk ├── mdsnippets.json ├── nuget.config ├── nuget.md └── nuget.source.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SimonCropp 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-do-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.github/workflows/on-push-do-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/appveyor.yml -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /docs/AraxisRefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/AraxisRefresh.png -------------------------------------------------------------------------------- /docs/code-versus-machine-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/code-versus-machine-settings.md -------------------------------------------------------------------------------- /docs/diff-tool.custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/diff-tool.custom.md -------------------------------------------------------------------------------- /docs/diff-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/diff-tool.md -------------------------------------------------------------------------------- /docs/diff-tool.order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/diff-tool.order.md -------------------------------------------------------------------------------- /docs/image-diff-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/image-diff-result.png -------------------------------------------------------------------------------- /docs/mdsource/code-versus-machine-settings.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/code-versus-machine-settings.source.md -------------------------------------------------------------------------------- /docs/mdsource/diff-tool.custom.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/diff-tool.custom.source.md -------------------------------------------------------------------------------- /docs/mdsource/diff-tool.order.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/diff-tool.order.source.md -------------------------------------------------------------------------------- /docs/mdsource/diff-tool.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/diff-tool.source.md -------------------------------------------------------------------------------- /docs/mdsource/diffToolCleanup.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/diffToolCleanup.include.md -------------------------------------------------------------------------------- /docs/mdsource/doc-index.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/doc-index.include.md -------------------------------------------------------------------------------- /docs/mdsource/intro.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/intro.include.md -------------------------------------------------------------------------------- /docs/mdsource/readme.source.md: -------------------------------------------------------------------------------- 1 | # Documentation 2 | 3 | include: doc-index -------------------------------------------------------------------------------- /docs/mdsource/tray.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/tray.source.md -------------------------------------------------------------------------------- /docs/mdsource/zzz.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/mdsource/zzz.include.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/resharper-ignore-spawned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/resharper-ignore-spawned.png -------------------------------------------------------------------------------- /docs/resharper-spawned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/resharper-spawned.png -------------------------------------------------------------------------------- /docs/rider-ignore-spawned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/rider-ignore-spawned.png -------------------------------------------------------------------------------- /docs/tray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/tray.md -------------------------------------------------------------------------------- /docs/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/docs/zzz.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/readme.md -------------------------------------------------------------------------------- /readme.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/readme.source.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/DiffEngine.Tests/AssemblyLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/AssemblyLocation.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/BuildServerDetectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/BuildServerDetectorTest.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DefinitionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/DefinitionsTest.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DiffEngine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/DiffEngine.Tests.csproj -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DiffEngineTrayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/DiffEngineTrayTest.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DiffRunner.file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DiffRunner.file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DiffRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/DiffRunnerTests.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DiffToolsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/DiffToolsTest.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DirForSearch/dir1/TextFile2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DiffEngine.Tests/DirForSearch/dir2/TextFile1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DiffEngine.Tests/FakeDiffTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/FakeDiffTool.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/LinuxOsxProcessTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/LinuxOsxProcessTests.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/OrderReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/OrderReaderTest.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/OsSettingsResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/OsSettingsResolverTest.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/ProcessCleanupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/ProcessCleanupTests.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/Spot_the_difference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/Spot_the_difference.png -------------------------------------------------------------------------------- /src/DiffEngine.Tests/WildcardFileFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/WildcardFileFinderTests.cs -------------------------------------------------------------------------------- /src/DiffEngine.Tests/defaultOrder.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/defaultOrder.include.md -------------------------------------------------------------------------------- /src/DiffEngine.Tests/diffToolList.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/diffToolList.include.md -------------------------------------------------------------------------------- /src/DiffEngine.Tests/diffTools.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/diffTools.include.md -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.target.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/input.target.png -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.target.txt: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.target.txtConvention: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.temp.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.Tests/input.temp.png -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.temp.txt: -------------------------------------------------------------------------------- 1 | temp -------------------------------------------------------------------------------- /src/DiffEngine.Tests/input.temp.txtConvention: -------------------------------------------------------------------------------- 1 | temp -------------------------------------------------------------------------------- /src/DiffEngine.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.slnx -------------------------------------------------------------------------------- /src/DiffEngine.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine.slnx.DotSettings -------------------------------------------------------------------------------- /src/DiffEngine/BuildArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/BuildArguments.cs -------------------------------------------------------------------------------- /src/DiffEngine/BuildServerDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/BuildServerDetector.cs -------------------------------------------------------------------------------- /src/DiffEngine/ClsCompliant.cs: -------------------------------------------------------------------------------- 1 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /src/DiffEngine/ContinuousTestingDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/ContinuousTestingDetector.cs -------------------------------------------------------------------------------- /src/DiffEngine/Definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Definition.cs -------------------------------------------------------------------------------- /src/DiffEngine/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Definitions.cs -------------------------------------------------------------------------------- /src/DiffEngine/DiffEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffEngine.csproj -------------------------------------------------------------------------------- /src/DiffEngine/DiffRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffRunner.cs -------------------------------------------------------------------------------- /src/DiffEngine/DiffRunner_Kill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffRunner_Kill.cs -------------------------------------------------------------------------------- /src/DiffEngine/DiffTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffTool.cs -------------------------------------------------------------------------------- /src/DiffEngine/DiffTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffTools.cs -------------------------------------------------------------------------------- /src/DiffEngine/DiffTools_Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffTools_Add.cs -------------------------------------------------------------------------------- /src/DiffEngine/DiffTools_TryFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DiffTools_TryFind.cs -------------------------------------------------------------------------------- /src/DiffEngine/DisabledChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/DisabledChecker.cs -------------------------------------------------------------------------------- /src/DiffEngine/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/EnvironmentHelper.cs -------------------------------------------------------------------------------- /src/DiffEngine/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/FodyWeavers.xml -------------------------------------------------------------------------------- /src/DiffEngine/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Guard.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/AraxisMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/AraxisMerge.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/BeyondCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/BeyondCompare.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Cursor.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/DeltaWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/DeltaWalker.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Diffinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Diffinity.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/ExamDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/ExamDiff.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Guiffy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Guiffy.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/KDiff3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/KDiff3.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Kaleidoscope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Kaleidoscope.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Meld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Meld.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Neovim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Neovim.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/P4Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/P4Merge.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Rider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Rider.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/SublimeMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/SublimeMerge.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/TkDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/TkDiff.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/TortoiseGitIDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/TortoiseGitIDiff.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/TortoiseGitMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/TortoiseGitMerge.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/TortoiseIDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/TortoiseIDiff.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/TortoiseMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/TortoiseMerge.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/Vim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/Vim.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/VisualStudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/VisualStudio.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/VsCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/VsCode.cs -------------------------------------------------------------------------------- /src/DiffEngine/Implementation/WinMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Implementation/WinMerge.cs -------------------------------------------------------------------------------- /src/DiffEngine/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/DiffEngine/LaunchArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/LaunchArguments.cs -------------------------------------------------------------------------------- /src/DiffEngine/LaunchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/LaunchResult.cs -------------------------------------------------------------------------------- /src/DiffEngine/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Logging.cs -------------------------------------------------------------------------------- /src/DiffEngine/MaxInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/MaxInstance.cs -------------------------------------------------------------------------------- /src/DiffEngine/OrderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/OrderReader.cs -------------------------------------------------------------------------------- /src/DiffEngine/OsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/OsSettings.cs -------------------------------------------------------------------------------- /src/DiffEngine/OsSettingsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/OsSettingsResolver.cs -------------------------------------------------------------------------------- /src/DiffEngine/OsSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/OsSupport.cs -------------------------------------------------------------------------------- /src/DiffEngine/Process/LinuxOsxProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Process/LinuxOsxProcess.cs -------------------------------------------------------------------------------- /src/DiffEngine/Process/ProcessCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Process/ProcessCleanup.cs -------------------------------------------------------------------------------- /src/DiffEngine/Process/ProcessCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Process/ProcessCommand.cs -------------------------------------------------------------------------------- /src/DiffEngine/Process/WindowsProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Process/WindowsProcess.cs -------------------------------------------------------------------------------- /src/DiffEngine/ResolvedTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/ResolvedTool.cs -------------------------------------------------------------------------------- /src/DiffEngine/TargetPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/TargetPosition.cs -------------------------------------------------------------------------------- /src/DiffEngine/ToolsOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/ToolsOrder.cs -------------------------------------------------------------------------------- /src/DiffEngine/Tray/DiffEngineTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Tray/DiffEngineTray.cs -------------------------------------------------------------------------------- /src/DiffEngine/Tray/JsonEscaping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Tray/JsonEscaping.cs -------------------------------------------------------------------------------- /src/DiffEngine/Tray/PiperClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/Tray/PiperClient.cs -------------------------------------------------------------------------------- /src/DiffEngine/WildcardFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngine/WildcardFileFinder.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/AsyncTimerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/AsyncTimerTests.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/DiffEngineTray.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/DiffEngineTray.Tests.csproj -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/HotKeyControlTests.Default.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/HotKeyControlTests.Default.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/HotKeyControlTests.WithKeys.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/HotKeyControlTests.WithKeys.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/HotKeyControlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/HotKeyControlTests.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.DiffTempTarget.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.DiffTempTarget.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.Empty.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.Empty.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.Full.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.Full.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.FullGrouped.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.FullGrouped.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.Grouped.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.Grouped.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.Many.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.Many.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.OnlyDelete.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.OnlyDelete.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.OnlyMove.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.OnlyMove.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/MenuBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/MenuBuilderTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/OptionsFormTests.Default.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/OptionsFormTests.Default.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/OptionsFormTests.WithKeys.verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/OptionsFormTests.WithKeys.verified.png -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/OptionsFormTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/OptionsFormTests.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/PiperTest.Delete.verified.txt: -------------------------------------------------------------------------------- 1 | { 2 | File: Foo 3 | } -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/PiperTest.DeleteJson.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/PiperTest.DeleteJson.verified.txt -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/PiperTest.Move.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/PiperTest.Move.verified.txt -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/PiperTest.MoveJson.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/PiperTest.MoveJson.verified.txt -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/PiperTest.SendOnly.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/PiperTest.SendOnly.verified.txt -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/PiperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/PiperTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/ProcessExTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/ProcessExTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/RecordingTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/RecordingTracker.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/SettingsHelperTests.ReadWrite.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/SettingsHelperTests.ReadWrite.verified.txt -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/SettingsHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/SettingsHelperTests.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/SolutionDirectoryFinderTests.Find.verified.txt: -------------------------------------------------------------------------------- 1 | DiffEngine -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/SolutionDirectoryFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/SolutionDirectoryFinderTests.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/TrackerClearTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/TrackerClearTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/TrackerDeleteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/TrackerDeleteTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/TrackerMoveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/TrackerMoveTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray.Tests/VersionReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray.Tests/VersionReaderTest.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/AssemblyLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/AssemblyLocation.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/AsyncTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/AsyncTimer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Controls/MenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Controls/MenuButton.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/DiffEngineTray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/DiffEngineTray.csproj -------------------------------------------------------------------------------- /src/DiffEngineTray/DiffToolLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/DiffToolLauncher.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/DirectoryLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/DirectoryLauncher.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/ExceptionHandler.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Extensions.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/FileComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/FileComparer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/FileEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/FileEx.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/FilePurger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/FilePurger.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/FodyWeavers.xml -------------------------------------------------------------------------------- /src/DiffEngineTray/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/GlobalUsings.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/HotKey/HotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/HotKey/HotKey.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/HotKey/KeyBindingIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/HotKey/KeyBindingIds.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/HotKey/KeyModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/HotKey/KeyModifiers.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/HotKey/KeyRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/HotKey/KeyRegister.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/Images.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/accept.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/acceptAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/acceptAll.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/active.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/active.ico -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/active.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/cogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/cogs.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/default.ico -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/default.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/delete.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/discard.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/exit.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/folder.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/link.png -------------------------------------------------------------------------------- /src/DiffEngineTray/Images/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Images/vs.png -------------------------------------------------------------------------------- /src/DiffEngineTray/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/IssueLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/IssueLauncher.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/LinkLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/LinkLauncher.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Logging.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/MenuBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/MenuBuilder.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Payloads/DeletePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Payloads/DeletePayload.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Payloads/MovePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Payloads/MovePayload.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/PiperServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/PiperServer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/ProcessEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/ProcessEx.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Program.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Serializer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/HotKeyControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/HotKeyControl.Designer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/HotKeyControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/HotKeyControl.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/HotKeyControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/HotKeyControl.resx -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/OptionsForm.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/OptionsForm.resx -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/OptionsFormLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/OptionsFormLauncher.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/Settings.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/SettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/SettingsHelper.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Settings/SettingsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Settings/SettingsValidator.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/SolutionDirectoryFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/SolutionDirectoryFinder.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Startup.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/TrackedDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/TrackedDelete.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/TrackedMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/TrackedMove.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Tracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Tracker.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/Updater.cs -------------------------------------------------------------------------------- /src/DiffEngineTray/VersionReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/DiffEngineTray/VersionReader.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/FakeDiffTool/FakeDiffTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/FakeDiffTool/FakeDiffTool.csproj -------------------------------------------------------------------------------- /src/FakeDiffTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/FakeDiffTool/Program.cs -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/images/checkmark-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/checkmark-circle.svg -------------------------------------------------------------------------------- /src/images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/checkmark.svg -------------------------------------------------------------------------------- /src/images/circle-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/circle-minus.svg -------------------------------------------------------------------------------- /src/images/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/cogs.svg -------------------------------------------------------------------------------- /src/images/cross-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/cross-circle.svg -------------------------------------------------------------------------------- /src/images/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/exit.svg -------------------------------------------------------------------------------- /src/images/folder-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/folder-alt.svg -------------------------------------------------------------------------------- /src/images/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/link.svg -------------------------------------------------------------------------------- /src/images/noun_Gear_172042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/noun_Gear_172042.png -------------------------------------------------------------------------------- /src/images/noun_Gear_172042Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/images/noun_Gear_172042Red.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/nuget.md -------------------------------------------------------------------------------- /src/nuget.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/DiffEngine/HEAD/src/nuget.source.md --------------------------------------------------------------------------------