We got an issue on github regarding SquishIt
adding a .cs file to a VB project because of the way we are leveraging WebActivator.
The best way to fix it seems to be to use the PreApplicationStartMethod attribute in the AssemblyInfo file for the preprocessor assembly to specify a method within our assembly to call prior to application start. In addition to helping us better support VB, this has the benefit of causing the assembly to always initialize itself (using the previous method, it only self-registered if installed via nuget). Only drawback is, it seems this would require us to drop .net 3.5 support (for preprocessors only, not the core library).
My question is, for anyone using the new Preprocessor assemblies in 0.9+, what framework version are you using them with?
Thanks for any and all feedback.
Alex