From df3a0283b0557be0c642be5c072a6bfbc0e7fd38 Mon Sep 17 00:00:00 2001 From: Nicolas Gnyra Date: Sun, 12 Nov 2023 20:45:11 -0500 Subject: [PATCH] Fix hard crash when using debug builds --- IPA.Loader/Loader/PluginComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA.Loader/Loader/PluginComponent.cs b/IPA.Loader/Loader/PluginComponent.cs index 362c7b53..a06f3ec2 100644 --- a/IPA.Loader/Loader/PluginComponent.cs +++ b/IPA.Loader/Loader/PluginComponent.cs @@ -59,7 +59,7 @@ namespace IPA.Loader initialized = true; #if DEBUG - Config.Stores.GeneratedStoreImpl.DebugSaveAssembly("GeneratedAssembly.dll"); + Config.Stores.GeneratedStoreImpl.DebugSaveAssembly($"{Config.Stores.GeneratedStoreImpl.GeneratedAssemblyName}.dll"); #endif } }