After a while testing VS11 beta, it happened that whole solution need to be backported to its origin: Visual Studio 2010.
Of course, VS11 make some changes, so manual fixing is necessary.
Here is my edits to .sln file:
- 2nd & 3rd lines:
fromMicrosoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 11
to
Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010
- found DB project lines, and recovered from previous checkin
fromProject("{<fill_here_guid_#1>}") = "MySolution.Data.Database", "MySolution.Data.Database\MySolution.Data.Database.sqlproj", "{<fill_here_guid_#2>}" EndProjectto
Project("{<fill_here_guid_#3>}") = "MySolution.Data.Database", "MySolution.Data.Database\MySolution.Data.Database.dbproj", "{<fill_here_guid_#4>}" EndProject - cleared all directories */obj
Note: VS DB project changed extension from .dbproj to .sqlproj in VS11
I confess: I was very lucky about 2nd step
Technorati tags: VS11, Visual Studio
Tags: .Net, Visual Studio