Browse Source

Optimize on release builds only

tags/1.0-rc
Mushroom 8 years ago
parent
commit
b749be8a2f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/Discord.Net/project.json

+ 3
- 3
src/Discord.Net/project.json View File

@@ -16,15 +16,15 @@
"buildOptions": {
"allowUnsafe": true,
"warningsAsErrors": false,
"xmlDoc": true,
"optimize": true
"xmlDoc": true
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ]
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true
}
}
},


Loading…
Cancel
Save