We want to start using Cassette in two products, which currently use asp.net bundling. One product is webforms and the other MVC. After adding the nuget package we get the following error (both use integrated pipeline)
500.22 - Internal Server Error (An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.)
I've replicated this by creating a new ASP.NET MVC v4 application and added the Cassette.aspnet nuget package.
I'm using Integrated mode so does this mean Cassette doesn't support integrated?
This article says to use
<cassette rewriteHtml="false" />
Does that mean that I cannot use this feature in an integrated mode application?
Alternatively i could try
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
as in the following article
We just want to understand why this is occurring and if it has any implications for what features of cassette we can use?