The root cause of this long period of time between RC1 and RC2 is the fact that Microsoft (formally) reintroduced the relevant toolchain (dotnet CLI) to replace the original DNX toolchain. The Dotnet tool chain contains the following commands:
dotnet NEW: Initializing a console C # project
dotnet Restore: Recovering a dependency package for a project
Dotnet Build: Building a. NET core application
dotnet Publish: Publish a portable or self-contained application
Dotnet Run: Running the application from the source code
dotnet test: Use Test runner to run the testing case
Dotnet Pack: Create a NuGet package for your application
Now on the version, in addition to the runtime upgrade to RC2, the development Package SDK version number is also upgraded to preview 1. More information about runtimes and development kits can be found in the official blog post: https://blogs.msdn.microsoft.com/dotnet/2016/05/16/announcing-net-core-rc2/
. NET Core