A simple ASP.NET MVC bundle that helps you combine all of your angular html templates into one file and add to your app's template cache.
PM> Install-Package Angular-Template-Bundler
bundles.Add(new AngularTemplateBundle("VIRTUAL_PATH", "ANGULAR_MODULE_NAME")
.IncludeDirectory("PATH_TO_APP_FOLDER", "SEARCH_PATTERN", SEARCH_SUBFOLDERS));
An example usage would be:
bundles.Add(new AngularTemplateBundle("~/bundles/app/templates", "myApp")
.IncludeDirectory("~/Assets/js/app", "*.tpl.html", true));
@Scripts.Render("~/bundles/app/templates")