[.NET source code] Visual Studio 2017 official version offline installation and introduction

Visual Studio 2017 RTM official version offline installation and introduction.

First go to the official website to download: https://www.visualstudio.com/zh-hans/downloads/

VS 2017 official version introduction:

https://www.visualstudio.com/zh-hans/vs/whatsnew/

VS 2017 offline mode only offline .NET Core part:

Visual Studio Professional 2017:

vs_professional.exe --layout D:\vs2017offline --add Microsoft.VisualStudio.Workload.NetCoreTools --lang zh-CN

Visual Studio Community 2017:

vs_community.exe --layout D:\vs2017offline --add Microsoft.VisualStudio.Workload.NetCoreTools --lang zh-CN

Visual Studio Enterprise 2017:

vs_enterprise.exe --layout D:\vs2017offline --add Microsoft.VisualStudio.Workload.NetCoreTools --lang zh-CN

After offline in this mode, the installation package is about 1.63G. After offline, open the corresponding installation in the offline directory and directly select .NET Core installation.

If everything is offline, take Visual Studio Community 2017 as an example:

vs_community.exe --layout D:\vs2017offline --lang zh-CN

This will take all functions offline.

The size of the installation package after offline.

Choose .NET Core cross-platform development.

After installation is complete.

New Project:

Development interface:

For more functions, you can practice by yourself.

Also released today, the official version of .NET Core SDK 1.0. After the SDK went through the RC4 version, it finally ushered in the official version.

Official blog introduction:

https://blogs.msdn.microsoft.com/dotnet/2017/03/07/announcing-net-core-tools-1-0

.NET Core SDK 1.0.1 download:

https://www.microsoft.com/net/download/core#/sdk

Create a new console application using dotnet new console:

  1. C:\>dotnet new console -o myapp
  2. The template "Console Application" created successfully.
  3. C:\>cd myapp
  4. C:\myapp>dotnet restore
  5. Restoring packages for C:\myapp\myapp.csproj...
  6. C:\myapp>dotnet run
  7. Hello World!
copy code

Development can then be opened via VS 2017.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324926924&siteId=291194637