我正在使用Unity构建一个简单的Hololens应用程序。
我只是从MixedRealityToolkit使用构建窗口
我已经做了很多次,没有任何问题。但是,在一堆更新后,应用程序安装失败
现在,我已将Hololens更新为最新版本17134.165.x86fre.rs4(2018年4月10日发行)。
同时我更新了Unity,Visual Studio 2017和Windows 10 SDK。 Windows 10 SDK为10.0.171340.0
一切都构建良好,并且App包的创建没有任何错误。
问题
当我尝试在Hololens上安装应用程序时,出现以下错误
Windows cannot install package [x] because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00.Debug" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x86 processor architecture and minimum version 14.0.26428.1, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00.Debug" currently installed are: {Microsoft.VCLibs.140.00.Debug_14.0.25830.2_x86__8wekyb3d8bbwe}(Package failed updates, dependency or conflict validation.)
问题似乎是使用了错误的Microsoft.VCLibs.140.00.Debug依赖项。它需要
14.0.26428.1
,但正在使用14.0.25830.2
。到目前为止我发现了什么
我可以看到,作为程序包依赖项包含的依赖项VCLIBS文件似乎是一个较旧的文件(与以前的SDK或Visual Studio版本一起安装的文件),但是我不知道在哪里可以找到更新的版本。
我已经尝试过Unity 2018和2017,但是Unity似乎不是问题
最佳答案
快速修复:将您的构建配置从debug
更改为release
应该可以使您在hololens上安装应用程序。
我在此处提供了更多详细信息:https://stackoverflow.com/a/51555857/6357154,但是我没有足够的声誉来将此发表为评论。