Rename: WirelessCertificates -> DeviceCertificates

Code updated to reflect change from 'WirelessCertificates' to
'DeviceCertificates'
This commit is contained in:
Gary Sharp
2013-02-07 18:33:41 +11:00
parent c7cbef9189
commit 5b93d7b1d1
5 changed files with 246 additions and 439 deletions
@@ -1,21 +0,0 @@
using System.Web;
using System.Web.Mvc;
using System.Web.WebPages;
using RazorGenerator.Mvc;
[assembly: WebActivator.PostApplicationStartMethod(typeof(Disco.Services.App_Start.RazorGeneratorMvcStart), "Start")]
namespace Disco.Services.App_Start {
public static class RazorGeneratorMvcStart {
public static void Start() {
var engine = new PrecompiledMvcEngine(typeof(RazorGeneratorMvcStart).Assembly) {
UsePhysicalViewsIfNewer = HttpContext.Current.Request.IsLocal
};
ViewEngines.Engines.Insert(0, engine);
// StartPage lookups are done by WebPages.
VirtualPathFactoryManager.RegisterVirtualPathFactory(engine);
}
}
}