3
2

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 Core(3.1)セットアップ

Last updated at Posted at 2020-08-24

.NET Coreを使用した開発について

.NET Coreで開発するためには、最低限、.NET Core SDKをインストールすればよい。
開発には、Visual Studio Code使用を推奨。
CLIコマンドでプロジェクト作成、ビルド、実行等を行う。

Windows10での.NET Core(3.1)のセットアップ方法

  1. https://dotnet.microsoft.com/download#/sdk にアクセスする。
    download.png

  2. Download .NET Core SDKからSDKをダウンロードする。

  3. ダウンロードされたdotnet-sdk-3.1.401-win-x64.exeを実行、インストールする。

  4. Visual Studio Codeに以下の拡張機能をインストール
    vscode.png

.NET Coreインストール確認

  1. 適当なパスでdotnet newを実行する。
  2. 以下のような説明文が表示される。
.NET Core 3.1 へようこそ!
---------------------    
SDK バージョン: 3.1.401  

テレメトリ
---------
.NET Core ツールは、エクスペリエンスの向上のために利用状況データを収集します。データは...

Hello World!

  1. Hello Worldアプリケーションを作るフォルダを作成し、移動する。
  2. ターミナルよりCLIコマンドdotnet new consoleを実行する。プロジェクトが作成される。
The template "Console Application" was created successfully.

Processing post-creation actions...
Running 'dotnet restore' on C:\work\dk\DG-Connect\tmp\tmp.csproj...
  復元対象のプロジェクトを決定しています...
  C:\work\dk\DG-Connect\tmp\tmp.csproj を復元しました (167 ms)。

Restore succeeded.

3.プロジェクトが作成されたらdotnet runを実行する。ターミナルにHello World!が表示される。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?