We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 238192d commit 6577f57Copy full SHA for 6577f57
1 file changed
src/DiffEngine.Tests/DiffRunnerTests.cs
@@ -1,4 +1,4 @@
1
-using System;
+#if NETCOREAPP3_1
2
using System.IO;
3
using System.Linq;
4
using System.Runtime.InteropServices;
@@ -30,7 +30,6 @@ public void Kill()
30
DiffRunner.Kill(tempFile, targetFile);
31
#endregion
32
}
33
-#if NETCOREAPP3_1
34
35
static string diffToolPath = Path.GetFullPath(Path.Combine(AssemblyLocation.CurrentDirectory, "../../../../FakeDiffTool/bin/FakeDiffTool.exe"));
36
@@ -62,10 +61,10 @@ static bool IsRunning()
62
61
Thread.Sleep(500);
63
return ProcessCleanup.FindAll().Any(x => x.Command.Contains("FakeDiffTool"));
64
65
-#endif
66
67
public DiffRunnerTests(ITestOutputHelper output) :
68
base(output)
69
{
70
71
-}
+}
+#endif
0 commit comments