Introduce a way to disable TieredCompilation (Advanced?)
Hello,
since TieredCompilation has a lot of influence on optimizations and can introduce gotchas such as https://stackoverflow.com/questions/69616548/garbage-collection-behaviour-difference-between-netframework-4-8-and-net-5/69617100#69617100
I'd love to see an option to disable it (as it is enabled by default on .NET Core).
Comments
Is it an option to use the environment variable?
https://learn.microsoft.com/en-us/dotnet/core/runtime-config/compilation
Yeah, I went with that in the meantime and seems to be a good solution.
Is there a system for property group .csproj style elements that can be attached to a query as to not make the options system bloated?
https://stackoverflow.com/a/14582921