.Net 2.0 上的 OpenRasta
我正在尝试使用 .Net 2.0 和 Visual Studio 2005 设置 OpenRasta 并不断收到以下错误
'OpenRasta.Configuration.Fluent.IHas' 不包含 'ResourcesOfType' 的定义
using (OpenRastaConfiguration.Manual)
{
ResourceSpace.Has.ResourcesOfType<Home>()
.AtUri("/home")
.HandledBy<HomeHandler>()
.RenderedByAspx("~/Views/HomeView.aspx");
}
我注意到我无法添加'using OpenRasta.Configuration.Web;',因为它是一个不存在的命名空间,这是原因吗?
是否有使用 .net 2.0 设置 OR 的在线教程?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能将 OpenRasta 与 VS2005 一起使用。
您需要 VS2008,在应用程序中以 .net 2.0 为目标,然后部署到仅具有 .net 2.0 的服务器。
换句话说,在开发时您需要 vs2008,但如果您链接到 Program Files/OpenRasta/net-20/ 中的 dll,您将能够部署到仅具有 .net 2.0 的计算机。
You cannot use OpenRasta with VS2005.
You need VS2008, target .net 2.0 in your application, and deploy to your server that only has .net 2.0 on it.
In other words, at development time you need vs2008, but provided you link to the dlls in the Program Files/OpenRasta/net-20/ you'll be able to deploy to a machine with only .net 2.0.