1

我正在 Windows phone 8 中实现 SIP (voip)。所以我通过 https://code.google.com/p/boghe/wiki/Building_Boghe_v2_wp8获得了一个库Boghe。我通过单击boghe-wp8.sln打开项目,但出现错误:-

Unsupported
This version of Visual Studio does not have the following project types installed or     does not support them. You can still open these projects in the version of Visual Studio in which they were originally created.
 - BackEnd, "F:\myboghe\boghe\branches\2.0\boghe\winrt\BackEnd\BackEnd.vcxproj"
 - BackEndProxyStub, "F:\myboghe\boghe\branches\2.0\boghe\winrt\BackEndProxyStub\BackEndProxyStub.vcxproj"


Non-functional changes required
Visual Studio will automatically make non-functional changes to the following projects     in order to enable them to open in this version and Visual Studio 2010 SP1. Project behavior will not be impacted.
 - boghe-wp8, "F:\myboghe\boghe\branches\2.0\boghe\boghe-wp8.sln"

当我构建时,我遇到了第二个错误:-

Error   102 The imported project "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\v110\Microsoft.Cpp.Default.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.    F:\myboghe\boghe\branches\2.0\boghe\winrt\BackEnd\BackEnd.vcxproj   32  3   Agents

请专家帮助我建立该库。我会非常感激。谢谢你!

4

2 回答 2

0

你需要制作一个文件夹 myboghe。然后从这个文件夹中的 svn 中检查这两个文件夹。运行 boghe/2.0/solution 文件。它会运行。如果您有任何问题,请回复我。我会写一步一步执行。

于 2013-09-09T17:20:55.200 回答
0

获取源代码

桌面(XP、Vista、7、8)和移动(WP8、RT、Surface)共享相同的基本代码,这意味着如果您从未检查过代码,则只需遵循本节。

Create new directory named myboghe

mkdir myboghe
cd myboghe

Checkout doubango source code into myboghe. Important: The destination directory MUST be named doubango

svn checkout http://doubango.googlecode.com/svn doubango

Checkout Boghe source code into myboghe

svn checkout http://boghe.googlecode.com/svn boghe

构建源代码

为 Windows Phone 8 构建 Boghe 就像安装 Windows Phone SDK 8.0、打开 myboghe\boghe\branches\2.0\boghe\boghe-wp8.sln 并运行 Boghe-wp8 目标项目一样简单。

请不要忘记根据您的目标类型(模拟器或设备)更改 CPU 类型(x86、WIN32、ARM)。

于 2014-03-11T08:13:40.243 回答