如何在 VS2008/VSS8.0/ASP.NET/IIS 上运行两个并发 Web 应用程序,用于主干和分支版本?
我正在使用的应用程序: Visual Studio 2008 (C#/ASP.NET) 视觉源安全8.0 IIS 5.1
我有两个名称相同的 Web 应用程序,但一个用于主要版本,另一个用于次要版本(主干和分支)。 我想知道 Visual Studio 中是否有一个选项可以阻止它使用 Web 应用程序的项目名称在 IIS 中创建 ASP.NET 应用程序。 由于它们的名称相同,我必须进入 IIS 并更改应用程序的路径,以便当我在两者之间切换时它指向主要(或次要)文件夹。
我想做的是这样的:
http://localhost/webapp_major
http://localhost/webapp_minor
但网络项目仍然具有相同的名称。 我知道我可以进入每个项目文件的属性并让它们指向不同的位置,但我认为当您想要在两者之间合并时,这会破坏某些内容。
任何想法将不胜感激。
Applications I am using:
Visual Studio 2008 (C#/ASP.NET)
Visual Source Safe 8.0
IIS 5.1
I have two Web Apps both named the same but one is used for major releases and the other is for minor (trunk and branch). I am wondering if there is an option in Visual Studio that prevents it from creating an ASP.NET app in IIS using the web app's project name. Since both of them are named the same I have to go into IIS and change the path of the application so that it point to the major (or minor) folder when i go between the two.
What I would like to do is have something like this:
http://localhost/webapp_major
http://localhost/webapp_minor
but the web projects still have the same name. I know I can go into the properties of the each project file and have them point to different places but I think that breaks something when you want to merge between the two.
Any Ideas would be very appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要在 Visual Studio 解决方案中添加基于 HTTP 的项目,而是将它们添加为文件项目,其中网站将在 Visual Studio 中作为 c:\inetput\wwwroot\major_version (例如)进行访问(而不是 http://localhost)。 这样您就可以在 IIS 中进行任何类型的设置,并且您的项目在合并它们时不会发生冲突。
Instead of having HTTP based projects in your visual studio solution, add them as file projects, where the website will be accessed as c:\inetput\wwwroot\major_version (for example) in visual studio (and not http://localhost). That way you can have any kind of setup you want in IIS and your projects won't conflict when you merge them.
您的 Web 应用程序项目将允许您为虚拟目录命名任何您想要的名称。 VS2008 对此进行了扩展,允许您在每个用户的基础上进行设置,因此此信息不会保存在项目文件中,因此不会传播到源代码管理。
Your web application project will let you name the Virtual Directory anything you want. VS2008 extends this by allowing you to set this on a per-user basis, so this information won't be saved in the project file, and therefore won't be propagated to source control.
您可以在 IIS 中手动创建一个新的 Web 应用程序,并让它指向您的工作目录。 Visual Studio 应遵循这些设置。
You can manually create a new web application in IIS and let it point to your working directory. Visual Studio should honor these settings.