Reputation: 21
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
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