2

After update of Toolkit (and Windows 10 SDK) app does not compile in X64 (but works correctly in X86). Here are the errors:

ILT0005: 'C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.native.compiler\2.2.1\tools\x64\ilc\Tools\rhbind.exe @"C:\Users\pierr\source\repos\Mon Gestionnaire de Photos\Mon Gestionnaire de Photos\obj\x64\Debug\ilc\intermediate\rhbindargs.Mon Gestionnaire de Photos.rsp"' returned exit code 7

and

RHBIND : error RHB0007: Could not load input file 'Microsoft.Toolkit.Uwp.UI.srclink'.

RangerRanger
  • 2,455
  • 2
  • 16
  • 36
Pierresa
  • 89
  • 5
  • Hello, I am having exactly the same problem. Have you found a solution? – Hong Nov 19 '18 at 14:44
  • 1
    No; tried reinstalling everything VS, SDK, Toolkit problem remains – Pierresa Nov 20 '18 at 15:28
  • Thank you for the information. FYI, I posted a thread: https://social.msdn.microsoft.com/Forums/windowsapps/en-US/c853eaca-deeb-433d-896a-58be300dea45/uwpc-error-rhb0007-could-not-load-input-file-microsofttoolkituwpuisrclink?forum=wpdevelop – Hong Nov 20 '18 at 16:08
  • I think it is a bug in the compiler that it trips when the name of the app contains a space. Can we try remove the space in the path and see if it compiles? – Andrew Au Nov 29 '18 at 19:10
  • 6.2.2 is no longer available from nuget – under Nov 29 '18 at 19:41

1 Answers1

5

I had a similar issues, Downgrading Microsoft.NETCore.UniversalWindowsPlatform from 6.2.2 to 6.1.9 resolves the issues.

The real issue was from a dependent package of Microsoft.NETCore.UniversalWindowsPlatform 6.2.2 : "Microsoft.Net.Native.Compiler/2.2.1" whereas the Microsoft.NETCore.UniversalWindowsPlatform 6.1.9 depends on "Microsoft.Net.Native.Compiler/2.1.8"

Shubhan
  • 874
  • 7
  • 13