Sideloaded app requires package Microsoft.VCLibs.120.00 on my build server

1

In trying to run integration tests on my windows store app but the sideloading of my test appx file fails with error (0x80073CF3):

Windows cannot install package (my package GUID) because this package depends on another package that could not be found. This package requir
es minimum version 12.0.21005.1 of framework Microsoft.VCLibs.120.00 published by any publisher to install. Provide the framework along with this package..

The same procedure works fine on my dev machine (from powershell).

windows-store-apps
sideloading
asked on Stack Overflow Aug 2, 2016 by Andy Joiner

1 Answer

10

A Microsoft blog post states:

...In order to facilitate this scenario for sideloaded apps, we have made the framework packages available here.

After downloading, and extracting the relevant architecture appx file, I installed it via powershell:

 Add-AppxPackage "C:\temp\Microsoft.VCLibs.120.00_12.0.21005.1_x86__8wekyb3d8bbwe.appx"
answered on Stack Overflow Aug 2, 2016 by Andy Joiner

User contributions licensed under CC BY-SA 3.0