Where I can change compiler options for C# project in VisualStudio 2008 (without command prompt). I need it to turn off optimization to compare optimized IL-code and unoptimized IL-code.
Asked
Active
Viewed 738 times
3 Answers
0
And just as info: If you run in the debugger you will always get completely unoptimized execution. Regardless of the settings.

Foxfire
- 5,675
- 21
- 29
-
That is not true. If you optimize, some lines may not execute, such as unused local variables and etc... – John Gietzen Oct 16 '09 at 18:28