Skip to main content

Getting SquishIt to work with Nancyfx and Razor (...and other static content issues)

SquishIt is a content bundler and minification tool. The github documentation contains exaples how to install and use it, and a sample application is provided. However I had some issues getting it to work with razor so I figured I would share these pain points with you.

Razor cannot find Assemblies

To start my project is a Nancyfx application with razor view engine installed. I initially ran Install-Package SquishIt. Once installed I ran through another tutorial that requires some editing of the webconfig. However my webconfig has been altered a lot already, and it did not look like the sample application. I am also not a guru in the web.config so I was kind of confused where to place the sample XML provided. I ignored the webconfig, I fired up nancy and tried to use SquishIt, only to get the following razor compile error.

The type or namespace name 'SquishIt' could not be found (are you missing a using directive or an assembly reference?)

It seems you must tell razor about squishIt's assemblies. Well It turns out there are basically 2 blocks of entries you need to add to your web.config. First you need to place <section name="razor" type="Nancy.ViewEngines.Razor.RazorConfigurationSection, Nancy.ViewEngines.Razor"/> inside <configSections> but outside of <sectionGroup>.

You should end up with a section config that looks like the following:

<configSections>
    <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral>
      <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral requirePermission="false" />
    </sectionGroup>
  <section name="razor" type="Nancy.ViewEngines.Razor.RazorConfigurationSection, Nancy.ViewEngines.Razor"/>
</configSections>

Next paste the following XML after </configSections>

<razor disableAutoIncludeModelNamespace="false">
    <assemblies>
      <add assembly="SquishIt.Framework"/>
    </assemblies>
    <namespaces>
      <add namespace="SquishIt.Framework"/>
    </namespaces>
  </razor>

Once I did this the razor views could compile, and it seemed to work, but not quite...

SquishIt cannot resolve file paths

Once I got it up and running, things did not seem right. So I started combing through google. I stumbled across a thread where the creator of SquishIt noted SquishIt was having issues with resolving file paths. This was caused by a change to Nancy.

He notes a commit to the sample application that fixes the problem. In nuget I updated SquishIt with the -pre flag so I could get the latest release. Once I did I implemented the following class (from the gitcommit):

And then added

Which seemed to work. I believe if you have your file paths be the same as the paths called by the HTML, it will probably work fine without the above fix.

Scripts/ folder doesn't work

This isn't actually a SquishIt problem, but I didn't notice this until I installed SquishIt. Files in a Scripts/ folder will not be served up by Nancy.

Back to Google I went, and I found my answer on stack overflow. Apparently Nancy only uses Content/ as the content directory, for static content. I ended up adding the following to my ConfigureConventions override.

The AddDirectory requires 2 strings, the first being the route to expect, the second is the directory it needs. This will enable the scripts folder to work in its entirety. You can use this to add other content directories. For me this worked fine.

Serving content

Now that it all worked I added Bundle.Css().Add("~/Content/bootstrap.css").AsCached("bootstrap", "~/assets/css/bootstrap"); to my ApplicationStartup override. Created a module to serve up the static content (stolen from github) .

Then added @Html.Raw(Bundle.Css().RenderCachedAssetTag("bootstrap")) to my razor view, and by magic it works.

As a side note, it will only minify if you're not in debug mode. So if you're application's webconfig has <compilation debug="true" targetFramework="4.5"> you may want flip it to false to see the minified files.

This behavior can be overridden with the .ForceRelease() as part of your bundle. ex. Bundle.Css().Add("~/Content/bootstrap.css").ForceRelease().AsCached("bootstrap", "~/assets/css/bootstrap");

Conclusion

Well after the work above I was finally generating minified files. SquishIt's ability to minify quickly is very nice. The way it manages files reminds me of the MVC4 Bundling, but SquishIt allows for much greater control over the process.

Tagged In:
csharp tutorial javascript nancyfx squishit css nancy