如何设置 ASP.NET 网站的目标平台
我有一个网站项目需要加载 32 位 DLL,并且我正在 Windows 7 64 位上开发该网站。
因此,32 位 dll 之一无法加载。
通常在桌面应用程序项目中,我可以转到项目设置,但是我无法找到该设置。
我正在使用 Visual Studio 2008
I have a website project that needs to load a 32 bit DLL, and I am developing the site on Windows 7 64 bit.
Because of this, one of the 32 bit dlls is failing to load.
Normally in a desktop application project I can go to project settings, however I am unable to locate the setting.
I am using Visual Studio 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的想法是它没有引入任何有价值的东西。
即使允许您以 32 位模式进行编译,其他人也可能会错误地将其配置为在 64 位应用程序池中运行。这仍然可能是一场灾难。
由于应用程序池位数始终是 IIS 设置,因此我们应该只注意站点部署,而不是编译。
My idea is that it introduces nothing valuable.
Even if you are allowed to compile in 32 bit mode, anyone else can configure it to be run in 64 bit application pool mistakenly. That can be a disaster still.
As application pool bitness is always an IIS setting, we should only be careful about the site deployment, not compilation.