From 9c57d15671d6bd154652891ff65fe6ec1e1b487b Mon Sep 17 00:00:00 2001 From: jvyden Date: Sun, 1 May 2022 15:31:17 -0400 Subject: [PATCH] Fix release builds --- ProjectLighthouse/Pages/Debug/RoomVisualizerPage.cshtml.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ProjectLighthouse/Pages/Debug/RoomVisualizerPage.cshtml.cs b/ProjectLighthouse/Pages/Debug/RoomVisualizerPage.cshtml.cs index ae3b0341..c0a47d65 100644 --- a/ProjectLighthouse/Pages/Debug/RoomVisualizerPage.cshtml.cs +++ b/ProjectLighthouse/Pages/Debug/RoomVisualizerPage.cshtml.cs @@ -1,6 +1,10 @@ #nullable enable + using LBPUnion.ProjectLighthouse.Pages.Layouts; using Microsoft.AspNetCore.Mvc; +#if !DEBUG +using LBPUnion.ProjectLighthouse.Types; +#endif namespace LBPUnion.ProjectLighthouse.Pages.Debug;