2017-12-31 221 views
0

Visual Studio 2017 version 15.6をインストールした後。プレビュー、私はクロスプラットフォームプロジェクトを作成することができません。毎回、私は絵から間違いを起こしています。これに対する解決策はありますか?Microsoft.Build.Utilities.ToolLocationHelper :: GetPathToStandardLibraries(MonoAndroid) - これを解決するには?

enter image description here

+0

プレビューです。自己責任で使用してください。安定版リリースに戻ってください。 –

答えて

0

それは実際にXamarinのVisual Studioテンプレートのバグです、bugzilla 60995を参照してください、一時的な回避策は、このバグのために提供されています

Workaround: Apparently when the template is generated it'll add the following line in the android csproj file:

<TargetFrameworkVersion>"v8.0"</TargetFrameworkVersion> 

The solution then is to change it to:

<TargetFrameworkVersion>v8.0</TargetFrameworkVersion> 

Without the quotes and after that, everything works fine again!

+0

ありがとう!これは私の問題@FrankWangを解決しましたが、すべての単一クロスプラットフォームプロジェクトを作成した後に別の問題が発生しました。エラー: "名前 'InitializeComponent'は現在のコンテキストに存在しません。 –

関連する問題