Loading

dotnet new 命令

如果想知道这个命令的详细用法,可以在打完命令之后,在输入一个" --help"即可

$ dotnet new --help
.NET Initializer

Usage: dotnet new [options]

Options:
-h|--help Show help information
-l|--lang <LANGUAGE> Language of project [C#|F#]
-t|--type <TYPE> Type of project

 

$ dotnet new -t --help
Unrecognized type: --help
Avaiable types for C# :
- Console
- Web
- Lib
- xunittest

从这里可以看到,dotnet new的创建类型有4个,默认的为Console,也就是命令行应用程序,之后的还有-Web、-Lib、-xunittest。

posted @ 2017-02-14 14:36  Richeir  阅读(2551)  评论(0编辑  收藏  举报