- .NET Core - Migrations
- Restoring and Building & MSBuild
- .NET Core - MSBuild & project.json
- .NET Core - SDK
- Managed Extensibility Framework
- .NET Core - Testing Library
- Running Tests in Visual Studio
- .NET Core - Create a Testing Project
- .NET Core - PCL Troubleshooting
- Creating a Xamarin.Forms Project
- Sharing .NET Core Libraries
- Adding References to Library
- .NET Core - Portable Class Library
- Create .NET Standard Library
- Windows Runtime & Extension SDKs
- .NET Core - Metapackage
- .NET Core - MSBuild
- Create UWP App with .NET Core
- .NET Core - Package References
- .NET Core - Project Files
- .NET Core - Modularity
- .NET Core - Code Execution
- .NET Core - Garbage Collection
- .NET Core - Numerics
- .NET Core - Getting Started
- .NET Core - Environment Setup
- .NET Core - Prerequisites
- .NET Core - Overview
- .NET Core - Home
.NET Core Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
.NET Core - SDK
In this chapter, we will understand the upcoming features in .NET Core. We will start with the .NET command pne tools by opening the following Url in browser
![Url](/dotnet_core/images/url.jpg)
To know more about the progress, you can download the latest version of .NET Core SDK by scrolpng down and you will see the Installer and Binaries section.
![Binaries Section](/dotnet_core/images/binaries_section.jpg)
You can see the latest version of preview tools for different operating systems, let us select the Installer as per your operating system.
We are working on preview 1 of .NET Core 2.0.
Let us now look at our current toopng by opening the command prompt and execute the following command.
dotnet --info
You will see information about the currently installed version of .NET Command Line Tools on your system as shown below.
![Command Line Tools](/dotnet_core/images/command_pne_tools.jpg)
You can see that currently we have preview 2 toopng. Let us now run the following command to see about the new command.
dotnet help new
For new command language of project, you can select pke C# and F# and the type of project, etc.
![Project Type](/dotnet_core/images/project_type.jpg)
Let us now see the changes in the latest version of .NET Core. Once the installer is downloaded, double-cpck on it to install it. Cpck on Install.
![Installer](/dotnet_core/images/installer.jpg)
The following screenshot shows the installation process.
![Process](/dotnet_core/images/process.jpg)
It will start the installation process. One the installation is finished, Close this dialog.
![Installation Finished](/dotnet_core/images/installation_finished.jpg)
Open the command prompt and execute the following command.
dotnet --info
You will see information of currently installed version of .NET Command Line Tools on your system as shown below.
![Tools on System](/dotnet_core/images/tools_on_system.jpg)
You can now see that we have preview1 toopng of .NET Core 2. Let us now run the following code in the command prompt to see about the new command in .NET Core 2 preview1.
dotnet help new
The command helps you download packages as well to the package cache.
![Package Cache](/dotnet_core/images/package_cache.jpg)
The command opens the following webpage which contains information about the new command in .NET Core 2 preview1.
![Preview1](/dotnet_core/images/preview1.jpg)
Let us scroll down, you can now see that we can create the .NET Core apppcation with more templates.
![Templates](/dotnet_core/images/templates.jpg)
We can now create mstest, web, mvc and webapi projects as well using the command pne.
Advertisements