From 08dbacfc437693bd566078fe31303323ccd75ae2 Mon Sep 17 00:00:00 2001 From: Joanna May Date: Sat, 16 Sep 2023 11:53:16 -0500 Subject: [PATCH] fix: windows GodotSharp symlink path --- GodotEnv/src/features/godot/models/Windows.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GodotEnv/src/features/godot/models/Windows.cs b/GodotEnv/src/features/godot/models/Windows.cs index e7d4690..1d71e1a 100644 --- a/GodotEnv/src/features/godot/models/Windows.cs +++ b/GodotEnv/src/features/godot/models/Windows.cs @@ -43,5 +43,7 @@ public override string GetRelativeExtractedExecutablePath( public override string GetRelativeGodotSharpPath( SemanticVersion version - ) => "GodotSharp"; + ) => FileClient.Combine( + GetFilenameVersionString(version) + "_mono_win64", "GodotSharp" + ); }