1
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?

[ASP.NET] VSCode上でソリューション、プロジェクトの作成

Last updated at Posted at 2024-11-01

Vscode上でターミナルを開き、以下のコマンドを実行する

cd <ソリューション作成先フォルダ>
dotnet new sln -o <ソリューション名>
cd <ソリューション名>
dotnet <テンプレート> -o <プロジェクト名> -f <バージョン>
dotnet sln add <プロジェクト名>

テンプレートにはmvcやrazorなどが指定できる。
詳しくはこちらから

例)mvcテンプレートを使用する場合

dotnet mvc -o <プロジェクト名> -f net8.0
1
0
1

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
1
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?