disable debuging features on release

This commit is contained in:
Nicolas Constant 2022-01-27 19:58:35 -05:00
parent 04b8cfa0e4
commit 5c4641c6ae
No known key found for this signature in database
GPG key ID: 1E9F677FB01A5688

View file

@ -14,6 +14,7 @@ using Newtonsoft.Json;
namespace BirdsiteLive.Controllers
{
#if DEBUG
public class DebugingController : Controller
{
private readonly InstanceSettings _instanceSettings;
@ -125,6 +126,7 @@ namespace BirdsiteLive.Controllers
return View("Index");
}
}
#endif
public static class HtmlHelperExtensions
{