VS2017: "Unable to find the resource compiler DLL. Make sure the path is correct."

I am using Visual Studio 2017. When I try to build a solution, I encounter this error:

Unable to find resource compiler dll. Make sure the path is correct.

I checked my system and found that the SDK v7.0, v8.0, v8.0A, v8.1A and v10.0A were installed on my machine. I checked the project properties and the default SDK is v8.0

+6
source share
2 answers

Me too, I installed only "Windows 10 sdk version 10.0.15063.0" and decided after:

Copy the rddll.dll file from: c: \ Program Files (x86) \ Windows Kits \ 10 \ bin \ 10.0.15063.0 \ x86 \ rcdll.dll to: c: \ Program Files (x86) \ Windows Kits \ 10 \ bin \ x86 \

: https://developercommunity.visualstudio.com/content/problem/43024/ide-cannot-find-the-resource-compiler-dll-rcdlldll.html

, .

Edit:

Visual Studio "" "", - .

.

+6


 C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64\rc.exe
 C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64\rcdll.dll

to

C:\Program Files (x86)\Windows Kits\10\bin\x64\rc.exe
 C:\Program Files (x86)\Windows Kits\10\bin\x64\rcdll.dll



 C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x86\rc.exe
 C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x86\rcdll.dll
 
 C:\Program Files (x86)\Windows Kits\10\bin\x86\rc.exe
 C:\Program Files (x86)\Windows Kits\10\bin\x86\rcdll.dll

-1

Source: https://habr.com/ru/post/1016434/


All Articles