Web 应用程序项目 URL - 来自 EnvDTE
是否可以从 EnvDTE 项目对象获取 Web 应用程序项目的 URL?
即,当我查看项目属性中的“Web”选项卡时,我想要在 Visual Studio 中看到的 URL。
理想情况下,如果项目设置为“使用 Visual Studio 开发服务器”或“使用本地 IIS 服务器”,我希望能够检索它
Is it possible to get the URL for a web application project from the EnvDTE Project object?
i.e. I want the URL I see in Visual Studio when I look at the Web tab in Project properties.
Ideally, I'd like to be able to retrieve it if the project is set to either "Use Visual Studio Development Server", or "Use Local IIS Server"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您检查过
属性
Project
对象吗?根据 此帖子 aProjectItem
中有一个“URL”项那里,所以Project
可能也有一个......我承认这只是一种猜测,因为我对 webapps 一无所知,我现在只是自己挖掘 EnvDte 的东西。但也许它有帮助......
Have you checked the
Properties
collection of theProject
object you've got? As per this post aProjectItem
has an "URL" item in there, so theProject
might have one too ...I admit this is just a guess since I know absolutely nothing about webapps, I'm just digging through EnvDte stuff myself right now. But maybe it helps ...