2011-10-21 11 views
3

Android SDKがEclipseと完全に連携しているWindows 7(64 bit) Hello World "サンプル(http://docs.xamarin.com/android/getting_started/hello_world - Xamarinから) は、" Project NameProject.csprojに設定されていないOutputPathプロパティ "というエラーで失敗します。MonoDevelopプロジェクトの "OutputPathプロパティがプロジェクトProjectName.csprojに設定されていません"というエラーが発生する可能性があります

私はXamarinからインストールプログラムを再実行しようとしましたが、このエラーは引き続き発生します。

誰かがこの問題を引き起こしている可能性があることをお勧めしますか? ありがとうございました。

正確なエラー:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(9,9): 
Error: The OutputPath property is not set for project 'helloWorld3.csproj'. 
Please check to make sure that you have specified a valid combination of 
Configuration and Platform for this project. 
Configuration='Debug' 
Platform='BPC'. 
This error may also appear if some other project is trying to follow a 
project-to-project reference to this project, this project has been 
unloaded or is not included in the solution, and the referencing project 
does not build using the same or an equivalent Configuration or Platform. 
(helloWorld3) 

答えて

7

私たちは前にこれを見てきたと思います。システムの製造元が、プラットフォームと呼ばれる環境変数をシステムにインストールしました。これは、msbuildが自動的に$(Platform)としてインポートして、msbuildがコンパイルに使用する実際の$(Platform)と競合するため、すべてのmsbuildベースのものを破壊します。

環境変数を削除して再試行してください。

+0

ありがとうございます、木曜日に私のWindowsコンピュータで試してみます。 –

+0

ありがとう、これは私を助けた。うまくいけば、Adrien Gも助けてくれました。おそらくこの答えを@Adrien G –

関連する問題