From 0ad83579fa49be0d74b2c47754df028c6c014edc Mon Sep 17 00:00:00 2001 From: Mikael Rasmussen Date: Wed, 24 Oct 2018 20:06:57 +0200 Subject: [PATCH] changeDirectory fix for FX, not sure if works with core. --- Examples/Test.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Examples/Test.cs b/Examples/Test.cs index 5cb25e4..740032f 100644 --- a/Examples/Test.cs +++ b/Examples/Test.cs @@ -19,8 +19,7 @@ namespace Examples var name = Path.GetFileNameWithoutExtension(filePath); Console.WriteLine("Running example " + filePath); - - ChangeDirectory(filePath); + ChangeDirectory(Path.GetDirectoryName(filePath)); Type.GetType(name)?.GetMethod("Main")?.Invoke(null, args); Console.WriteLine();