-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Description
With 1.0 of .NET Core, all applications that target .NET Core and run on Windows have a Universal CRT (UCRT) dependency. This dependency is needed on all non-Windows 10 editions. This especially impacts the self-contained applications, as it means that the machine that they are to be run on needs to have UCRT installed.
If the dependency is not present, applications will fail to run and errors will be thrown. The error will be:
The program can't start because api-ms-win-crt-runtime-1-1-0.dll is missing from your computer. Try reinstalling the program to fix this problem.
The UCRT dependency can be installed via Windows Update (name: "Update for Universal C Runtime in Windows" as according to https://support.microsoft.com/en-us/kb/2999226) and as a recommended update it will be installed automatically if the user left the default settings for Windows Update operational. It can also be downloaded from Microsoft Download Center.
Related issues: #17496