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

推荐订阅源

Martin Fowler
Martin Fowler
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
L
LangChain Blog
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园_首页
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
美团技术团队
V
V2EX

博客园 - 相思天涯

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