Visual Studio 2010自动更改项目类型
有谁知道为什么 VS 10 从 Team Foundation Server 下载该项目时将自己的项目类型从 Web 应用程序更改为网站?
Does anybody know why VS 10 change himself project type from Web Appliacation to Web Site when this project is downloaded from Team Foundation Server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来好像有人更改了应用程序并以这种方式检查了它...
Visual Studio 不会自行更改项目类型。
Sounds like someone has changed the application and checked it in that way...
Visual Studio won't change the project type on it's own.
项目类型存储在项目文件中,而不是存储在解决方案文件中。对项目文件进行 TFS 比较(或查看历史记录)以查看是否已更改。
对于 C# 项目文件,扩展名为 .csproj
该网站表示“Web 应用程序”有 .csproj 或 .vbproj ,但“网站项目”不会有项目文件 (http://msdn.microsoft.com/en-我们/库/dd547590.aspx)。如果 Web 应用程序项目被取消,并在其位置创建了一个网站,则可能很难追踪更改发生的时间。
Project type is stored in the project file, not in the solution file. Do a TFS compare (or view the history) on the project file to see if that was changed.
For C# project files the extension is .csproj
This site says "web applications" have a .csproj or .vbproj , but that a "website project" will not have a project file (http://msdn.microsoft.com/en-us/library/dd547590.aspx). If the Web Application project was blasted away, and a web site created in its place, it may be difficult to track down when the change happened.