Is Visual Studio 2017 backwards compatible with Visual Studio 2015 solutions?

匆匆过客 提交于 2019-11-27 20:22:17

It depends on the type of project.

For most (standard) types, for example web projects (Full .NET Framework), Windows projects VS 2017 is forward and backward compatible with VS 2015, solutions and projects formats are the same.

But not compatible for .NET Core projects, because project.json was changed back to .csproj.

If you create a .csproj in VS 2017 or optimize it as suggested in Old csproj to new csproj: Visual Studio 2017 upgrade guide , it will not be compatible with VS2015 any more.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!