惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园_首页
M
MIT News - Artificial intelligence
雷峰网
雷峰网
GbyAI
GbyAI
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
S
SegmentFault 最新的问题
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 【当耐特】
V
Visual Studio Blog
月光博客
月光博客
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
有赞技术团队
有赞技术团队

博客园 - 相思天涯

无题 vs菜单怎么重复了4次?? 2004已经逝去 平安夜 特殊的日子 老工程师的心理话: 给年轻工程师的十大忠告 无题 msn怎么登陆不上? 又到了一年的中秋 CallXML 无题 神奇莫幻的图片 无题 真实和谎言的故事 怎么了? 在午夜里听雨 离校 毕业答辩结束
Converting a project from VS.NET 2003 to VS.NET 2002 - 相...
相思天涯 · 2004-07-15 · via 博客园 - 相思天涯

The easiest way to convert a project/solution created using VS.NET 2003 to VS.NET 2002 is to edit the "solution" and its "corresponding C# project file" manually.

  1. After opening the solution file in Notepad, change the "Format version," which would be on the first line, from "8.00" to "7.00." Save the file and close it.
  2. Then open the corresponding C# project file and replace the existing "ProductVersion" and "SchemaVersion" with what's below:
    ProductVersion = "7.0.9466"
    SchemaVersion = "1.0"

    Save and close the file.