WinObjC Building Design Errors

I download WinObjC files for GitHub and follow all the steps. When I try to build a project, I have this problem (using the Visual Studio 2015 community)

These are two errors:

 Severity Code Description Project File Line Warning MSB3245 Could not resolve this reference. Could not locate the assembly "XamlCompositorCS". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. WOCCatalog (WOCCatalog\WOCCatalog) C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets 1819 Severity Code Description Project File Line Error LNK1181 cannot open input file 'OpenGLES.lib' WOCCatalog (WOCCatalog\WOCCatalog) D:\WinObjC-master\samples\WOCCatalog\WOCCatalog.vsimporter\WOCCatalog-WinStore10\LINK 1 

How to solve this?

+4
source share
3 answers

Open the included solution in WinObjC / build / build.sln

Select "Build / Build Solution"

+2
source

You either need to download the finished SDK (see the "Releases" section on github), or, in accordance with the comment above:

Open the included solution in WinObjC / build / build.sln Select "Build / Build Solution"

+1
source

1.Download the latest version.

2.open ... \ WinObjC \ build \ build.sln

ps: If you are using a virtual machine (e.g. PD), make sure that all files stored in the Windows folder (e.g. c: \ somewhere), instead of the Mac folder (e.g. \\ Mac \ Home \ Desktop)

Update 3.vs 2015 update1 may prevent the installation of wp8 / 8.1 tools.

4. Create your own solution (select Build / Build Solution).

0
source

All Articles