问题解决者:
我正在使用Windows Phone 8应用程序。我刚被介绍到这个产品,但是这个项目已经达到了一定的水平。我把代码拉到我的计算机上,当我尝试构建应用程序时,我得到了“无法找到引用的组件'xxxxxxxxxx‘”。(如下所示的片段)。


发布于 2015-05-15 19:47:14
下面是一个算法:
如果您刚加入一个项目,无法构建项目:GOTO A
- Do you use NuGet, if not mention this to your other fellow devs. It's a good idea to pick up. NuGet will re-download binaries from central repository(ies) when you rebuild a project
- Open project file in notepad (.csproj) and look where the references point to. It's likely they point to some `/bin` or `/obj` folder which developers shouldn't commit and didn't commit. Get the right binaries from other developers or elsewhere, create a folder, like `libs` in your solution, put the binaries there and reference from VS these binaries. Ensure that the `libs` folder is committed to source control
A ==的==
建议您的开发伙伴(其他项目提交者)修复引用并提交到源代码控制,以便您可以选择它们
发布于 2015-05-15 20:14:45
问题出在我的主动解决方案平台上。参考资料或项目是针对"x86“平台的,而我正在尝试使用”任何CPU“平台进行构建。
https://stackoverflow.com/questions/30258499
复制相似问题