I\'m using Costura.Fody to embed all dlls into my application assembly.
Is there any way to disable Costura.Fody in Debug build mode? How to make Costura.Fody to work o
One solution might be to check your .csproj file and add a condition to the Fody-related lines. Something like this:
.csproj
Of course, this is mainly for simple use cases where you don't want any Fody extension to run in certain build environments.