如何从命令行创建新的dotnetcore EMPTY Web项目模板

时间:2017-01-14 11:17:26

标签: c# command-line asp.net-core asp.net-core-cli

在命令行我可以输入

dotnet new -t web

构建一个新的asp.net核心Web项目,但它包含了一个完整的模板' (相当于在Visual Studio中创建一个新的MVC项目。)

在visual studio中我也可以创建一个新的EMPTY项目(它只返回一个' Hello World'字符串响应)。

是否有一个等效的命令行选项来支持EMPTY项目?

我找到了dotnet new命令here的文档,但似乎没有这样的选项

3 个答案:

答案 0 :(得分:2)

根据MS文档

Building Projects with Yeoman

您还可以使用Yeoman命令行工具yo和Yeoman生成器。

您将需要安装Node.js和npm。

从那里运行ASP.NET生成器哟

yo aspnet

生成器显示菜单。向下箭头到空Web应用程序项目,点击输入,然后为项目命名。 Yeoman将支持该项目及其支持文件。

答案 1 :(得分:2)

回答

dotnet new web

我是怎么想出来的

(如果 cli 发生变化,将来也可以使用 2 个验证)

.netcore cli/shell 有一个实用程序可以列出所有可以使用“new”创建的新模板/项目。使用它,您可以找到空的 Web 应用程序创建命令

dotnet new -l 

然后返回这个

Templates                                     Short Name           Language    Tags                  
--------------------------------------------  -------------------  ----------  ----------------------
Console Application                           console              [C#],F#,VB  Common/Console        
Class library                                 classlib             [C#],F#,VB  Common/Library        
WPF Application                               wpf                  [C#],VB     Common/WPF            
WPF Class library                             wpflib               [C#],VB     Common/WPF            
WPF Custom Control Library                    wpfcustomcontrollib  [C#],VB     Common/WPF            
WPF User Control Library                      wpfusercontrollib    [C#],VB     Common/WPF            
Windows Forms App                             winforms             [C#],VB     Common/WinForms       
Windows Forms Control Library                 winformscontrollib   [C#],VB     Common/WinForms       
Windows Forms Class Library                   winformslib          [C#],VB     Common/WinForms       
Worker Service                                worker               [C#],F#     Common/Worker/Web     
Unit Test Project                             mstest               [C#],F#,VB  Test/MSTest           
NUnit 3 Test Project                          nunit                [C#],F#,VB  Test/NUnit            
NUnit 3 Test Item                             nunit-test           [C#],F#,VB  Test/NUnit            
xUnit Test Project                            xunit                [C#],F#,VB  Test/xUnit            
Razor Component                               razorcomponent       [C#]        Web/ASP.NET           
Razor Page                                    page                 [C#]        Web/ASP.NET           
MVC ViewImports                               viewimports          [C#]        Web/ASP.NET           
MVC ViewStart                                 viewstart            [C#]        Web/ASP.NET           
Blazor Server App                             blazorserver         [C#]        Web/Blazor            
Blazor WebAssembly App                        blazorwasm           [C#]        Web/Blazor/WebAssembly
ASP.NET Core Empty                            web                  [C#],F#     Web/Empty             
ASP.NET Core Web App (Model-View-Controller)  mvc                  [C#],F#     Web/MVC               
ASP.NET Core Web App                          webapp               [C#]        Web/MVC/Razor Pages   
ASP.NET Core with Angular                     angular              [C#]        Web/MVC/SPA           
ASP.NET Core with React.js                    react                [C#]        Web/MVC/SPA           
ASP.NET Core with React.js and Redux          reactredux           [C#]        Web/MVC/SPA           
Razor Class Library                           razorclasslib        [C#]        Web/Razor/Library     
ASP.NET Core Web API                          webapi               [C#],F#     Web/WebAPI            
ASP.NET Core gRPC Service                     grpc                 [C#]        Web/gRPC              
dotnet gitignore file                         gitignore                        Config                
global.json file                              globaljson                       Config                
NuGet Config                                  nugetconfig                      Config                
Dotnet local tool manifest file               tool-manifest                    Config                
Web Config                                    webconfig                        Config                
Solution File                                 sln                              Solution              
Protocol Buffer File                          proto                            Web/gRPC              

答案 2 :(得分:0)