Tutorial by Examples

Each .NET Core component (SDK, Host and Shared Framework) is versioned independently. You can find the version for each of them separately. SDK You can use the --version option to dotnet to see the SDK version. For example: $ ~/dotnet-1.1.1/dotnet --version 1.0.0-preview2-1-003176 dotne...
It's possible to have multiple .NET Core SDKs and Runtimes available on disk. You can select the versions for each separately. To select the version of the SDK to use, use global.json. To select the version of the shared framework to use, target the specified framwork in the .csproj file (or proj...

Page 1 of 1