5
5

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.

C#の開発環境を整える(Visual Studio 2019)

Posted at

#はじめに
C#プログラミングを開始するため、環境づくりを説明します。

#目次
1.Visual Studio 2019 Community Editionのインストール
2.C#でHello Worldを実行
3.NuGet関係のパッケージをインストール
4.インテリセンスを日本語化

#1.Visual Studio 2019 Community Editionのインストール
##インストールファイルをダウンロード
MicrosoftのサイトよりCommunity Editionの実行ファイルをダウンロードします。

download.png

##インストーラーで.NETデスクトップ開発を選択
.NETデスクトップ開発を選択後、ダウンロードおよびインストールしていきます。
Microsoftのアカウントでのログインを要求されますので、新規作成か既存のIDでログインしてください。

CSinstall.png

#2.C#でHello Worldを実行
###新規プロジェクトを作成
Visual Studio 2019を起動し、C#プログラムを実行する環境を作成してください。

2020-06-28_23h46_26.png

##HelloWorldプログラムを実行
新規プロジェクトを作成すると、HelloWorldプログラムが自動生成されます。
ビルド後、実行できるか確認してください。

HelloWorld.cs

using System;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

##実行エラー発生
自動生成のHelloWorldプログラムを実行しようとしたとき、必ずエラーが発生しました。
ネットを調べるとNuGet関係のパッケージがインストールされていないことをが問題のようです。

資産ファイル 'xxx\obj\project.assets.json' が見つかりません。NuGet パッケージの復元を>実行して、このファイルを生成してください。

#3.NuGet関係のパッケージをインストール
Visual Studio installerを起動し、個別コンポーネントから、
NuGetのターゲットおよびビルドタスクをインストールします。
インストール完了後、HelloWorldプログラムが実行できることを確認してください。

nuget.png

#4.インテリセンスを日本語化
Visual Studio 2019では関数の説明が英語のままで内容が分かりづらいです。
Microsoftのサイトにローカライズされたファイルがあるのでインストールします。
その際、ダウンロードしたファイルは**.Net core Release 3.1.x**です。

 https://docs.microsoft.com/ja-jp/dotnet/core/install/localized-intellisense

5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?