Share an offline installation tutorial for the official version of Visual Studio 2017

Y2J
Release: 2017-05-02 11:19:43
Original
3627 people have browsed it

This article mainly introduces the offline installation tutorial of Visual Studio 2017 official version in detail. It has certain reference value. Interested friends can refer to

Visual Studio 2017 RTM official version offline installation. and introduction.

First download from the official website: www.visualstudio.com/zh-hans/downloads/

Introduction to the official version of VS 2017: www.visualstudio.com/zh-hans/vs/whatsnew/

VS 2017 offline mode only offline .NET Core part:

Visual Studio Professional 2017:

vs_professional.exe--layoutD:\vs2017offline--addMicrosoft.VisualStudio.Workload.NetCoreTools--langzh-CN

##Visual Studio Community 2017:

vs_community.exe --layoutD:\vs2017offline--addMicrosoft.VisualStudio.Workload.NetCoreTools--langzh-CN

Visual Studio Enterprise 2017:

vs_enterprise.exe --layoutD:\vs2017offline--addMicrosoft.VisualStudio.Workload.NetCoreTools--langzh -CN

After going offline according to this mode, the installation package will be about 1.63G. After going offline, open the corresponding installation in the offline directory and directly select .NET Core to install.

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

vs_community.exe --layoutD:\vs2017offline --langzh-CN

This way all functions can be taken offline.

The installation package size after offline.

Choose .NET Core cross-platform development.

After the installation is completed.

New project:

Development interface:

You can practice more functions by yourself.

The official version of .NET Core SDK 1.0 was also released today. 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:

C:\>dotnet new console -o myapp The template "Console Application" created successfully. C:\>cd myapp C:\myapp>dotnet restore Restoring packages for C:\myapp\myapp.csproj... C:\myapp>dotnet run Hello World!
Copy after login

Then you can open development through VS 2017.

Blog sample code GitHub: github.com/linezero/Blog

The above is the detailed content of Share an offline installation tutorial for the official version of Visual Studio 2017. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!