RazorEngineCore
RazorEngineCore copied to clipboard
adjust optimize level when options.IncludeDebuggingInfo is true.
Debug example doesn't working well on my machine then I figured out there is not enough information for debuging.
Before
.WithOptimizationLevel(OptimizationLevel.Release)
After
.WithOptimizationLevel(options.IncludeDebuggingInfo ? OptimizationLevel.Debug : OptimizationLevel.Release)