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

推荐订阅源

D
DataBreaches.Net
L
LangChain Blog
博客园_首页
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
WordPress大学
WordPress大学
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
C
Check Point Blog
IT之家
IT之家
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
D
Docker
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
I
InfoQ

博客园 - 相思天涯

无题 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.