You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just upgraded to VS 17.13. Now msbuild fails to build my solutions. E.g. msbuild test.sln gives me this error:
C:\git\test.sln : error MSB4025: The project file could not be loade
d. System.AggregateException: One or more errors occurred. ---> Microsoft.VisualStudio.SolutionPersistence.Model.Soluti
onException: The file version '13' is unsupported.
Steps to reproduce
Create an empty C++ project/solution.
Change the version of the .sln file to 13.00. Not sure where I got this number from, but it's been in our repo for many years.
Microsoft Visual Studio Solution File, Format Version 13.00
If you search Github for that string, you'll find some 1200 references. What's up with this?
The text was updated successfully, but these errors were encountered:
This is not a bug. The latest supported version is 12.00. Format Version 13.00 doesn't exist. Please change it to 12.00.
Previously this worked because MSBuild solution parser didn't check the format version. Now, we use Microsoft.VisualStudio.SolutionPersistence to parse solution. The change was introduced in #10836
Just upgraded to
VS 17.13
. Nowmsbuild
fails to build my solutions. E.g.msbuild test.sln
gives me this error:Steps to reproduce
.sln
file to13.00
. Not sure where I got this number from, but it's been in our repo for many years.Microsoft Visual Studio Solution File, Format Version 13.00
If you search
Github
for that string, you'll find some 1200 references. What's up with this?The text was updated successfully, but these errors were encountered: