When compiling a Windows 8.1 application in Windows 10, it gives the following errors: 2> MakePri: error 0x80073b0f: Processing resources with an error: Duplicate input. 2> MakePRI: error 0xdef00532: conflicting values for the resource 'ExceptionStringTable / SeekNegative'
Based on the answers to this:
Getting a cryptic build error after upgrading the solution to Windows 8.1
Tried to find duplicate resources. Duplicates are not included in my code. But they are created from Microsoft builds. .. \ OBJ \ Debug \ PresentationCore \ EN-US \ ExceptionStringTable.resw (318): .. \ OBJ \ Debug \ PresentationFramework \ EN-US \ ExceptionStringTable.resw (520): ... \ obj \ Debug \ WindowsBase \ en-US \ ExceptionStringTable.resw (225):
In different assemblies, for example, above, there are several duplicates.
Also this project has MVVMCross dependency.
How to get rid of this error?
source
share