Visual Studio 2015 project has four submodules. So these are migrated to the UAP. If I migrate one Visual C++ referenced module then the Javascript module which is referencing the same Visual C++ module throws an exception "Invalid PRI error". With warning " This project targets "Windows, Version=8.1", but it is attempting to reference module targeting "UAP, Version=10.0.14393.0", which is invalid."
So in the above scenario the Javascript module is not migrated(i.e. Windows 8.1). So because of the above warning, I migrated the Javascript module to the UAP as well, so the PRI invalid error is gone but Now I am facing this error on the Jenkins
add-appxpackage C:\jenkins\workspace\viewer-windows_validator_build\build\..\viewer\AppPackages\viewer-test_*_x86_Test\viewer-test_*_x86.appx C:\jenkins\workspace\viewer-windows_validator_build\viewer\AppPackages\viewer-test_1.0.0.0_x86_Test\Dependencies\x86\Microsoft.NET.CoreRuntime.1.0.appx C:\jenkins\workspace\viewer-windows_validator_build\viewer\AppPackages\viewer-test_1.0.0.0_x86_Test\Dependencies\x86\Microsoft.VCLibs.x86.14.00.appx
09:47:52 protocol viewer-test
09:47:52 start viewer-test:?closeAfterRun=true
09:47:54 start : This command cannot be run due to the error: The remote procedure call failed.
09:47:54 At C:\jenkins\workspace\viewer-windows_validator_build\build\buildUtils.psm1:125 char:5
09:47:54 + start ${viewerProtocol}:$params
09:47:54 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
09:47:54 + CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException
09:47:54 + FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
09:47:54
09:47:54 Waiting for WWAHost process to exit with Timeout of 300
09:47:54 Get-Process : Cannot find a process with the name "WWAHost". Verify the process name and call the cmdlet again.
09:47:54 At C:\jenkins\workspace\viewer-windows_validator_build\build\buildUtils.psm1:149 char:9
09:47:54 + Get-Process $processName | Wait-Process -Timeout $TIMEOUT;
Can someone hint what is wrong with it?