From 4af9bc05dc0cd02a56fc9d93469c69cf7939d73e Mon Sep 17 00:00:00 2001 From: goat Date: Sat, 28 Dec 2024 14:00:25 +0100 Subject: [PATCH] don't rebuild Dalamud.Boot every time, copy out of output directory instead --- Dalamud.Boot/Dalamud.Boot.vcxproj | 12 ++++++---- .../Internal/Asserts/RenderScopes.cs | 23 ------------------- 2 files changed, 7 insertions(+), 28 deletions(-) delete mode 100644 Dalamud/Interface/Internal/Asserts/RenderScopes.cs diff --git a/Dalamud.Boot/Dalamud.Boot.vcxproj b/Dalamud.Boot/Dalamud.Boot.vcxproj index 80435cd67..c18045027 100644 --- a/Dalamud.Boot/Dalamud.Boot.vcxproj +++ b/Dalamud.Boot/Dalamud.Boot.vcxproj @@ -28,7 +28,7 @@ v143 false Unicode - ..\bin\$(Configuration)\ + bin\$(Configuration)\ obj\$(Configuration)\ @@ -200,8 +200,10 @@ - - - + + + + + - \ No newline at end of file + diff --git a/Dalamud/Interface/Internal/Asserts/RenderScopes.cs b/Dalamud/Interface/Internal/Asserts/RenderScopes.cs deleted file mode 100644 index 1e0448e87..000000000 --- a/Dalamud/Interface/Internal/Asserts/RenderScopes.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.Diagnostics; - -namespace Dalamud.Interface.Internal.Asserts; - -public static class RenderScopes -{ - private static RenderScopeFrame currentFrame = new(); - private static RenderScopeFrame lastFrame = new(); - - public static RenderScopeFrame GetLastFrame() => lastFrame; - - public static RenderScopeFrame GetCurrentFrame() => currentFrame; - - public static void NewFrame() - { - //Debug.Assert(currentFrame.IsRoot, "NewFrame() but we didn't pop all the way to ."); - } - - public class RenderScopeFrame - { - - } -}