summaryrefslogtreecommitdiff
path: root/Server.csproj
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-15 01:37:47 +1000
committerJake Mannens <jake@asger.xyz>2026-05-15 13:59:32 +1000
commite7093551526d9996b18bda65d48628ee97d540ab (patch)
treed48bad271c08b2682b8bbdd41454cc8ba045afcc /Server.csproj
parentc54beb7b449315b4494509c3c0df2ee9f1182c4d (diff)
Disable PDB file generation on release builds
Diffstat (limited to 'Server.csproj')
-rw-r--r--Server.csproj5
1 files changed, 5 insertions, 0 deletions
diff --git a/Server.csproj b/Server.csproj
index aeccae2..e2211ec 100644
--- a/Server.csproj
+++ b/Server.csproj
@@ -24,6 +24,11 @@
<DefaultItemExcludes>$(DefaultItemExcludes);Data/**</DefaultItemExcludes>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)' == 'Release'">
+ <DebugType>None</DebugType>
+ <DebugSymbols>false</DebugSymbols>
+ </PropertyGroup>
+
<ItemGroup>
<Compile Remove="Data/**" />
<Content Remove="Data/**" />