用于开发 .Net Core 应用程序的 IDE 有哪些?
What are the IDEs for developing .Net Core application?
我想学习.net 核心应用程序开发。我目前正在使用 Visual Studio 2012
.
Is there a way to develop a .net core application with Visual Studio 2012 or is it
compulsory to use Visual Studio 2017
for .net core development ?
您可以(并且应该)使用 Visual Studio Code。
根据 the official docs,如果您想在 Windows 上开发 .NET Core 应用程序,您有以下三种选择:
- Command line 使用您选择的任何编辑器(也可以是 VS 2012)
- Visual Studio 2017(微软无意支持早期版本的 VS 进行 .Net Core 开发)——它还有社区版
- Visual Studio Code 便于 cross-platform 开发,最适合 ASP.NET 核心应用程序
我们可以使用多种应用程序或方法开发 .Net 核心应用程序。
- 命令提示符
We can use command prompt to develop .net core application and the
additional thing we want is .net core SDK. You can follow this.
- Visual Studio代码
You can use visual studio code for .net core development which is
light application that can be taken for free. follow this article.
- Visual Studio 2017社区版
This is also a way to develop .net core application which comes with
many facilities. after registering you can use this one also for free. Follow this.
我想学习.net 核心应用程序开发。我目前正在使用 Visual Studio 2012
.
Is there a way to develop a .net core application with Visual Studio 2012 or is it compulsory to use
Visual Studio 2017
for .net core development ?
您可以(并且应该)使用 Visual Studio Code。
根据 the official docs,如果您想在 Windows 上开发 .NET Core 应用程序,您有以下三种选择:
- Command line 使用您选择的任何编辑器(也可以是 VS 2012)
- Visual Studio 2017(微软无意支持早期版本的 VS 进行 .Net Core 开发)——它还有社区版
- Visual Studio Code 便于 cross-platform 开发,最适合 ASP.NET 核心应用程序
我们可以使用多种应用程序或方法开发 .Net 核心应用程序。
- 命令提示符
We can use command prompt to develop .net core application and the additional thing we want is .net core SDK. You can follow this.
- Visual Studio代码
You can use visual studio code for .net core development which is light application that can be taken for free. follow this article.
- Visual Studio 2017社区版
This is also a way to develop .net core application which comes with many facilities. after registering you can use this one also for free. Follow this.