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
- {
-
- }
-}