Visual Studio 2010 中 applicationhost.config 的 IIS Express 路径
有没有办法告诉 Visual Studio 2010 在启动 IIS Express 时对 /config 参数使用什么值?
使用 Process Explorer 我可以看到:
- iisexpress.exe 进程由 Visual Studio 启动,/config 参数通过名为
IIS_USER_HOME
的环境变量指向“My Documents\IISExpress” 。
但是我需要将 applicationhost.config 存储在另一个位置。 更改 IIS_USER_HOME
变量可能会解决问题(?),但我不知道有什么方法可以访问它。
我尝试过的:
我想这些说明 如何使用 IIS Express SP1 之前的版本调试 .NET Web 项目 可能对我有用,但遵循它们似乎很麻烦。应该有更简单的方法吗?
这个关于 IIS Express 中的全局变量的 StackOverflow 问题建议我应该移动 '我的文档'。不幸的是,这对我来说不是一个选择。
Is there a way to tell Visual Studio 2010 what value to use for the /config parameter when IIS Express is started?
Using Process Explorer I can see:
- the iisexpress.exe process is started by Visual Studio with the /config parameter pointing to 'My Documents\IISExpress' via the environment variable named
IIS_USER_HOME
.
However I need to store my applicationhost.config in another location.
Changing that IIS_USER_HOME
variable might do the trick (?) but I don't know any way to access it.
What I have tried:
I guess that these instructions on how to debug .NET web projects with IIS Express pre SP1 might work for me but they seems like a hassle to follow. There ought to be an easier way?
This StackOverflow question about global variables within IIS Express suggest that I should move the location of 'My Documents'. Unfortunately that is not an option for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法更改 IIS_USER_HOME,因为这是在进程启动期间由 IISExpress.exe 设置的。
我不确定您对 如何使用 IIS Express SP1 之前的版本调试 .NET Web 项目 .
如果您不想在 VS 中使用宏,也许您可以从命令行使用 /config 开关启动 IIS Express,然后从 Visual Studio 附加到 iisexpress.exe 并调试您的 Web 应用程序。
You cannot change IIS_USER_HOME because this is set by IISExpress.exe during the process startup.
I am not sure about concerns you have about how to debug .NET web projects with IIS Express pre SP1 .
If you don't want to use macros in VS, probably you can just start IIS Express from command line with /config switch and then from visual Studio attach to iisexpress.exe and debug your web application.