.Net 2.0 上的 OpenRasta

发布于 2024-08-18 06:50:23 字数 587 浏览 4 评论 0原文

我正在尝试使用 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悍妇囚夫 2024-08-25 06:50:23

您不能将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文