web-dev-qa-db-ja.com

Visual Studio 2015でVisual Studio 2017プロジェクトを開く

私はVisual Studio 2017 RCに移行しましたが、まだVisual Studio 2015で作業している人がいます。現在、2017年にプロジェクトを作成するとき、2015年には動作しません。VS2015でプロジェクトを開くと、問題があることを示す黄色の三角形。そして、ビルドしません。

enter image description here

黄色の三角形に関連するエラーメッセージは、それらのファイルが見つからないということです。この問題は、.2017コアがこれまで使用していたproject.jsonファイルではなく、VS2017が使用する新しい.csprojファイルが原因であると考えています。

enter image description here

VS2017で作成されたプロジェクトは2015年と下位互換性があると思いました。そうではないと思います。 VS2015とVS2017の両方で作業できるプロジェクトを作成する方法があるかどうか誰もが知っていますか?ありがとう!

21
Zorthgo

.NET Coreの新しいcsprojベースのプロジェクトはVisual Studio 2015ではサポートされていません。それについての議論があります here ですが、その要点は次のとおりです。

Rich Lander [MSFT]

We are working to get the new .NET Core msbuild-based tools finished
and at RTM quality as quickly as possible. They will be supported in
Visual Studio 2017+ and will be shipped as RTM next year. The changes
are significant, including to Visual Studio components, making it
very challenging for us to support them in Visual Studio 2015.
18
Brad Melanson