From 6f1e8050967905eda96d76695565e7f1502cbd3e Mon Sep 17 00:00:00 2001 From: hexvalid <4836149+hexvalid@users.noreply.github.com> Date: Wed, 18 Jun 2025 17:57:39 +0300 Subject: [PATCH] Update GUIHelper.cs Eliminate duplicate CopyResource call. it was breaking DLL hot-reloading --- SharpGUI/GUIHelper.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/SharpGUI/GUIHelper.cs b/SharpGUI/GUIHelper.cs index 87dc482..96132ca 100644 --- a/SharpGUI/GUIHelper.cs +++ b/SharpGUI/GUIHelper.cs @@ -28,8 +28,6 @@ internal static void LoadLibraryResource(string name, string nativesFolder) { string libraryPath = Path.Combine(nativesFolder, name); - CopyResource(name, libraryPath); - if (!File.Exists(libraryPath)) CopyResource(name, libraryPath);