配置 ninject 以与 azure 配合使用

发布于 2024-12-24 18:49:30 字数 135 浏览 2 评论 0原文

我无法让 Ninject 在 Azure 应用程序中启动。如果我将 mvc3 项目设置为启动项目,一切正常,但如果我使用云项目,ninject 不会加载。我需要将其设置为从某个地方开始吗?

正如您可能想象的那样,我对 azure 完全陌生。

I cant get Ninject to start in a Azure application. If i set the mvc3 project as startup project, everything works fine, but if i use the cloud project, ninject does not load. Do i need to set it to start somewhere?

as you might imagine, i am totally new to azure.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦醒灬来后我 2024-12-31 18:49:30

您遇到具体错误吗?我们在 Azure 中使用 Ninject 就很好了。只需确保 .DLL 与应用程序一起部署

Are you getting specific errors? We use Ninject in Azure just fine. Just had to make sure that .DLL's were deployed with the application

红墙和绿瓦 2024-12-31 18:49:30

正如 @Igorek 指出的,请确保您将 Ninject DLL 与您的项目一起提供。

要实现此目的,请查看 Ninject.DLL 引用的属性。您应该将Copy Local 设置为true。如果您不这样做,Ninject DLL 将不会成为 Windows Azure 角色实例中部署的一部分。

DLL 复制本地属性

As @Igorek pointed out, make sure you're shipping the Ninject DLLs along with your project.

To accomplish this, look at the properties of the Ninject.DLL reference. You should have Copy Local set to true. If you don't do this, the Ninject DLL won't be part of your deployment in your Windows Azure Role instances.

DLL copy-local property

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