Bạn đang cài Visual Studio 2005 nhưng có một số đoạn code mẫu download từ các diễn đàn lại viết bằng Visual 2008. Hoặc khi làm bài chung 1 nhóm, nếu người làm VS 2008, người làm VS 2005 thì thật là khó, vì như ta đã biết VS 2008 có thể xem được các project của VS 2005 còn ngược lại thì không được? Vì vậy vấn đề đặt ra là phải tìm cách chuyển đổi các project của visual 2008 xuống 2005.
Cách 1:
Bạn mở file solution (*.sln) ở ngoài cùng thư mục bằng Notepad và sửa
Mã:
- Code:
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Mã:
- Code:
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Mã:
- Code:
[code]
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targe[/code]ts" />
Mã:
- Code:
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Cách 2:
Sử dụng chương trình Project Converter :
The technique described in this article uses an external utility to convert between the Visual Studio project file formats. It can be run on systems which do not have any version of Visual Stuido installed at all.
Last edited by Admin on Mon Dec 12, 2011 5:47 pm; edited 1 time in total