2011-10-21 40 views
3

在Android SDK上運行的Windows 7(64位)與我的第一個Android應用程序Eclipse完美協同工作時,使用第一個「 Hello World「示例(在此處找到 - http://docs.xamarin.com/android/getting_started/hello_world - 來自Xamarin) 失敗,並顯示錯誤」OutputPath屬性未爲項目NameProject.csproj設置「。在我的MonoDevelop項目中導致「未爲項目ProjectName.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) 

回答

7

我想我們以前見過這個。您的系統製造商在您的系統上安裝了名爲Platform的環境變量。這打破了所有基於msbuild的東西,因爲msbuild自動導入爲$(Platform),與msbuild用來編譯的真實$(Platform)衝突。

嘗試刪除環境變量並重試。

+0

謝謝,我會在我的Windows電腦上試用它。 –

+0

謝謝,這對我有幫助。希望也幫助Adrien G。也許接受這個答案,如果它@Adrien G –

相關問題