diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-15 01:37:10 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-15 01:37:10 +1000 |
| commit | 0a485ede8f5bb94ac12e6e052b4f4e7e489d24f7 (patch) | |
| tree | fbe4e6ec5d5ac6023b2bb57e4b49eabfcf84d662 | |
| parent | a215f834406159f34e28426dadede5eb77f66081 (diff) | |
Disable PDB file generation on release builds
| -rw-r--r-- | ApiModels.csproj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ApiModels.csproj b/ApiModels.csproj index 35fda64..7f3b935 100644 --- a/ApiModels.csproj +++ b/ApiModels.csproj @@ -12,4 +12,9 @@ <Version>0.16-alpha</Version> </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)' == 'Release'"> + <DebugType>None</DebugType> + <DebugSymbols>false</DebugSymbols> + </PropertyGroup> + </Project> |
