今天使用VS2008编译项目时报错: The OutputPath property is not set for this project. Please check to make sure that you have specified a valid Configuration/Platform combination. Configuration='Debug' Platform='x86' 解决办法如下: 1.选中编译失败的项目,右键点击卸载项目 2.选中卸载后的项目,右键点击…
一般是因为导入新项目的时候报错的.原因是引入的依赖库的问题.重新执行pod install应该可以解决.不过,有时候如果重新执行pod install无法执行,可以采用以下方法: 在终端中cd到项目所在目录,然后执行以下命令: pod deintegrate // removes all pod related configurations from your project rm Podfile.lock //removes the saved reference to the pods po…