How the code should be optimized.
| Property | Description |
|---|---|
| Default | The default optimization mode - uses OptimizeFor.Balanced. |
| Performance | Optimize for performance - the compiler should make the most optimal binary possible. |
| Size | Optimize for size - the compiler should make the smallest binary possible. |
| FastCompilation | Optimize for fast compilation - the compiler should perform some optimization, but take as little time as possible to do it. |
| Balanced | Optimize for balanced compilation - ensuring that good performance is obtained while keeping compile time as low as possible. |