0

我们正在为 UWP 应用程序在 VSTS 上创建 appxbundle。构建成功,但是在运行时我们在访问以下方法时遇到异常:

public static Task<DeviceManagementClient> CreateAsync(IDeviceTwin deviceTwin, IDeviceManagementRequestHandler hostAppHandler);

例外:

    The specified module could not be found. 
    (Exception from HRESULT: 0x8007007E) at System.StubHelpers.StubHelpers.GetWinRTFactoryObject(IntPtr pCPCMD) 
at SystemConfiguratorProxyClient.SCProxyClient..ctor() at Microsoft.Devices.Management.SystemConfiguratorProxy..ctor() 
at Microsoft.Devices.Management.DeviceManagementClient.<CreateAsync>d__7.MoveNext() --- 

构建机器: 带有 Windows 10 SDK 秋季创建者更新的 Windows Server 2012 R2

运行时: 带有 Windows 10 RS3 版本的 Dragonboard

我们遵循 UWP 构建模板来创建应用程序包。

我们缺少什么?

4

1 回答 1

1

问题是我们有一个在 Debug 版本中构建的自定义 Nuget 包,因此它在发布构建配置中不起作用。谢谢!

于 2017-11-17T14:07:32.897 回答