UWP 部署 Microsoft.NET.Native.Runtime.1.7 未找到错误
UWP Deployment Microsoft.NET.Native.Runtime.1.7 not found error
我最近安装了 windows / visual studio 2017 的一些更新,现在当我创建我的 UWP 应用程序包并尝试将其部署到它曾经部署过的任何机器时工作正常 - 安装失败并且 windows 错误日志中有此错误消息:
AppX Deployment operation failed for package 92211ab1-5481-4a1a-9111-a3dd87b81b72_1.0.26.0_neutral_~_n78qa84z3g9aj with error 0x80073CF3. The specific error text for this failure is: Windows cannot install package 92211ab1-5481-4a1a-9111-a3dd87b81b72_1.0.26.0_x86__n78qa84z3g9aj because this package depends on a framework that could not be found. Provide the framework "Microsoft.NET.Native.Runtime.1.7" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x86 processor architecture and minimum version 1.7.25531.0, along with this package to install. The frameworks with name "Microsoft.NET.Native.Runtime.1.7" currently installed are: {}
我在网上找不到任何关于这个包的参考资料。
该软件包在开发机器上安装得很好。
如有任何帮助,我们将不胜感激。
编辑 1:
下面是我的依赖项文件夹的屏幕截图:
UWP Deployment Microsoft.NET.Native.Runtime.1.7 not found
问题是当前OS系统没有Microsoft.NET.Native.Runtime.1.7
依赖。您可以手动安装 Microsoft.NET.Native.Runtime.1.7
依赖。
Microsoft.NET.Native.Runtime.1.7
依赖会存放在appx文件夹下的Dependencies
文件夹中。
更新1
我查看了你的截图。看起来你在调试模式下生成了你的包,我可以用这种方式重现相同的依赖关系。 .NET Native 工具链在发布模式下默认被勾选。所以你可以在 发布模式 中重新生成你的包以获取上面的文件。
看起来这些依赖项只出现在 Release 版本中,而不出现在 Debug 中。
我最近安装了 windows / visual studio 2017 的一些更新,现在当我创建我的 UWP 应用程序包并尝试将其部署到它曾经部署过的任何机器时工作正常 - 安装失败并且 windows 错误日志中有此错误消息:
AppX Deployment operation failed for package 92211ab1-5481-4a1a-9111-a3dd87b81b72_1.0.26.0_neutral_~_n78qa84z3g9aj with error 0x80073CF3. The specific error text for this failure is: Windows cannot install package 92211ab1-5481-4a1a-9111-a3dd87b81b72_1.0.26.0_x86__n78qa84z3g9aj because this package depends on a framework that could not be found. Provide the framework "Microsoft.NET.Native.Runtime.1.7" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x86 processor architecture and minimum version 1.7.25531.0, along with this package to install. The frameworks with name "Microsoft.NET.Native.Runtime.1.7" currently installed are: {}
我在网上找不到任何关于这个包的参考资料。
该软件包在开发机器上安装得很好。
如有任何帮助,我们将不胜感激。
编辑 1:
下面是我的依赖项文件夹的屏幕截图:
UWP Deployment Microsoft.NET.Native.Runtime.1.7 not found
问题是当前OS系统没有Microsoft.NET.Native.Runtime.1.7
依赖。您可以手动安装 Microsoft.NET.Native.Runtime.1.7
依赖。
Microsoft.NET.Native.Runtime.1.7
依赖会存放在appx文件夹下的Dependencies
文件夹中。
更新1
我查看了你的截图。看起来你在调试模式下生成了你的包,我可以用这种方式重现相同的依赖关系。 .NET Native 工具链在发布模式下默认被勾选。所以你可以在 发布模式 中重新生成你的包以获取上面的文件。
看起来这些依赖项只出现在 Release 版本中,而不出现在 Debug 中。