3

Windows 7(64ビット)で、Android SDKがEclipseと完全に連携している場合-最初の「HelloWorld」サンプルを使用した最初のAndroidアプリケーション(ここにあります-http : //docs.xamarin.com/android/getting_started/hello_world-from Xamarin)は、「プロジェクトNameProject.csprojに設定されていないOutputPathプロパティ」というエラーで失敗します。

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)
4

1 に答える 1

7

これは前に見たことがあると思います。システムの製造元は、Platformという環境変数をシステムにインストールしました。これは、msbuildベースのものをすべて壊します。msbuildはそれを$(Platform)として自動的にインポートし、msbuildがコンパイルに使用する実際の$(Platform)と競合するためです。

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

于 2011-10-24T20:36:32.290 に答える