IIS Express Visual Studio 集成 - 更改站点名称
我刚刚开始将 Visual Studio 2010 SP1 与 IIS Express 一起使用。当 Visual Studio 启动 IIS Express 时,它会指定用于启动 IIS Express 的“站点”的名称。该网站的名称似乎源自我的网络项目的名称。是否可以让 Visual Studio 启动一个具有其他名称的网站?例如,如果我的 Web 项目的名称是“WebProject1”,当 Visual Studio 启动 IIS Express 时,它将使用以下命令:
iisexpress.exe /site:WebProject1
我想强制它执行此操作:
iisexpress.exe /site:MyMasterSite
有什么想法吗?
I'm just starting to use Visual Studio 2010 SP1 with IIS Express. When Visual Studio launches IIS Express, it specifies the name of the "site" to launch IIS Express with. The name of the site seems to be derived from the name of my web project. Is it possible to have Visual Studio launch a site with some other name? For instance, if my web project's name is "WebProject1", when Visual Studio launches IIS Express, it will use the following command:
iisexpress.exe /site:WebProject1
I would like to force it to do this instead:
iisexpress.exe /site:MyMasterSite
Any ideas out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 applicationhost.config 文件中更改此设置。这可以在 user/documents/iisexpress/config 文件夹中找到。在配置文件中的 system.applicationhost 节点下,您将找到一个站点节点,该节点允许您在站点名称节点中设置名称。
You will want to change this in the applicationhost.config file. This can be found in the user/documents/iisexpress/config folder. In the config file, under the system.applicationhost node you will find a sites node that should allow you to set the name in the site name node.