使用 visual studio 代码创建 Asp.net MVC 应用程序(非核心)

Create Asp.net MVC Application (not core) with visual studio code

我有一个问题,我在网上搜索过,找不到任何答案。

如何在 VS Code 中创建 ASP.NET MVC Web 应用程序示例?

注意:我不想创建 .NET Core 应用程序

第二个问题是:如何在 VS Code 中发布 ASP.NET MVC web 应用程序?

注意: 我用的是 Kali Linux

否 VS Code 不支持 ASP.NET Web 应用程序。参考 https://code.visualstudio.com/docs/languages/csharp

Due to this focus, many standard C# project types are not recognized by VS Code. An example of a non-supported project type is an ASP.NET MVC Application (though ASP.NET Core is supported).

ASP.NET MVC Web 应用程序不会 运行 在 Linux 的任何版本上,因为它对 Windows OS 具有硬依赖性(您可以尝试单声道)。 .NET Core Web 应用程序可以在 Linux.

上 运行