Skip to content

Files

Latest commit

 

History

History
12 lines (7 loc) · 723 Bytes

unoptimized.md

File metadata and controls

12 lines (7 loc) · 723 Bytes

Pattern: .NET Assembly is not optimized

Issue: -

Description

This file was not optimized by .NET compiler. Optimizations make your output file smaller, faster, and more efficient. However, they result in code rearrangement in the output file, which can make debugging difficult. So typically optimizations should be disabled for debugging and enabled for publishing an assembly.

Further Reading