- Create an ASP.NET Empty Web Application
- Install the FubuMVC.References NuGet
- Add a global.asax and copy/paste the Global.cs file
Can you get to diagnostics (/_fubu)?
public class Global : System.Web.HttpApplication | |
{ | |
protected void Application_Start(object sender, EventArgs e) | |
{ | |
FubuApplication | |
.For<Test>() | |
.StructureMapObjectFactory() | |
.Bootstrap(RouteTable.Routes); | |
} | |
} | |
public class Test : FubuRegistry | |
{ | |
public Test() | |
{ | |
IncludeDiagnostics(true); | |
} | |
} |
Now try installing diagnostics and see if IonicZip doesn't blow up again :(
Yep, it blows - All fubu projects need to have Ionic.Zip removed - only Bottles needs it and gets it via the /lib folder - not as a nuget package.
Ionic.Zip has not been removed from the adv. diagnostics nuget + the current FubuMVC nuget stuff still has ref to it - that also needs to be removed. Dru is aware of the last part.
You wanna make a quick mailing list post just to make sure everyone's clear on that? :)
Yeah :)
Just tried - works on my machine :)