From 2eaf1e57b2a9da22d1b0a20e1bdb04e0f202235c Mon Sep 17 00:00:00 2001 From: Johnathon Slightham Date: Mon, 12 Jan 2026 13:56:06 -0500 Subject: [PATCH] Remove manual copy of dll for windows build --- Assets/Editor/BuildScript.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Assets/Editor/BuildScript.cs b/Assets/Editor/BuildScript.cs index 52704ea..a8b2765 100644 --- a/Assets/Editor/BuildScript.cs +++ b/Assets/Editor/BuildScript.cs @@ -14,9 +14,6 @@ public class BuildScript BuildOptions.None ); - string sourceSoPath = "Assets/ControlLibrary/libc_control.dll"; - string destSoPath = Path.Combine(Path.GetDirectoryName(outputPath), "libc_control.dll"); - File.Copy(sourceSoPath, destSoPath, overwrite: true); }