0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

.NET CLI コマンド

Posted at

donet 情報/バージョンを確認する

dotnet --version
dotnet --info

参考:https://docs.microsoft.com/ja-jp/dotnet/core/tools/dotnet

ソリューションを作成する

dotnet new sln
dotnet new sln --name <OUTPUT_NAME>

参考:https://docs.microsoft.com/ja-jp/dotnet/core/tools/dotnet-new

プロジェクトを作成する

dotnet new console -n <OUTPUT_NAME> -o <OUTPUT_DIRECTORY>

参考:https://docs.microsoft.com/ja-jp/dotnet/core/tools/dotnet-new

プロジェクトをソリューションに追加する

dotnet sln add <PROJECT_PATH>

参考:https://docs.microsoft.com/ja-jp/dotnet/core/tools/dotnet-sln#add

プロジェクトにNugetパッケージを追加する

dotnet add package <PACKAGE_NAME>

参考:https://docs.microsoft.com/ja-jp/dotnet/core/tools/dotnet-add-package

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?