I'm trying to setup OpenRasta with .Net 2.0 and Visual Studio 2005 and keep getting the following error
'OpenRasta.Configuration.Fluent.IHas' does not contain a definition for 'ResourcesOfType'
using (OpenRastaConfiguration.Manual)
{
ResourceSpace.Has.ResourcesOfType<Home>()
.AtUri("/home")
.HandledBy<HomeHandler>()
.RenderedByAspx("~/Views/HomeView.aspx");
}
I've noticed I couldn't add a 'using OpenRasta.Configuration.Web;' since it's a non-existent namespace, is that the reason?
Is there an online tutorial for setting up OR with .net 2.0?