diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-15 01:37:47 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-15 13:59:32 +1000 |
| commit | e7093551526d9996b18bda65d48628ee97d540ab (patch) | |
| tree | d48bad271c08b2682b8bbdd41454cc8ba045afcc /Server.csproj | |
| parent | c54beb7b449315b4494509c3c0df2ee9f1182c4d (diff) | |
Disable PDB file generation on release builds
Diffstat (limited to 'Server.csproj')
| -rw-r--r-- | Server.csproj | 5 |
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/**" /> |
