3

在 Windows 7(64 位)上,Android SDK 与 Eclipse 完美配合 - 我的第一个 android 应用程序,使用第一个“Hello World”示例(在此处找到 - http://docs.xamarin.com/android/getting_started/hello_world - 来自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 回答