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#/sdkCreate 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!
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!