What is the difference between the .NET Core SDK and the .NET Core Runtime and what should the developer and user of my program need to install?

    1 answer 1

    • SDK (Software Developer Kit) - for software development, etc.
    • Runtime - to run the software.

    The user of your program needs to set Runtime (if not strange).

    • In general, according to the ideas, yes, but I decided to check whether I was right in Google, but I did not find the answer. Do I need to install Runtime? (I'm a developer) - Editaw5
    • @ Editaw5, github.com/dotnet/cli/issues/7235 . If you install the SDK you will get it immediately and Runtime - Ares