Could not find the Setting to prefent blank linke after #if
Hello,
Simple Question after Code Cleanup my code looks like this
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
but should look like this
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
Maybe a nice to have feature would be:
After an code cleanup VS shows yellow bars on the left side to show the lines that have changed.
When hover the Mouse over these yellow bars an Quickinfo is shown that lists all the setting that cause the change.
Tanks
Please sign in to leave a comment.