Raw
Raw

Reputation: 21

Why does my program ask for api-ms-win-crt-runtime-l1-1-0.dll after the runtime debugging?

I'm new in Visual Studio 2015. Today I tried to do runtime debugging, and after that my program started requiring api-ms-win-crt-runtime-l1-1-0.dll when launching on other PCs. How to fix this?

Upvotes: 2

Views: 1081

Answers (1)

magicandre1981
magicandre1981

Reputation: 28836

Microsoft refactored the C/C++ Runtime in Visual Studio 2015 and the api-ms-win-crt-runtime-l1-1-0.dll is the new C++ Runtime. So you need to install the Microsoft Visual C++ 2015 Redistributable on all PCs where you want to run your tool.

Upvotes: 1

Related Questions