LoginSignup
1
1

More than 3 years have passed since last update.

Visual Studio開発環境構築メモ

Last updated at Posted at 2020-07-24

1.コーディング関連

1-1.ソースの整形

dotnet-format

インストール

  1. スタートメニューから「Developer Command Prompt for VS 2019」を起動。
  2. ソリューションフォルダに移動。
  3. マニフェストファイルを作成するため、以下を入力する。「dotnet new tool-manifest」
  4. 以下を入力し、インストールする。「dotnet tool install dotnet-format」

実行

「dotnet format」を入力し、実行する。

CodeMaid

Code Alignment

2.テスト関連

2-1.Nugetのおすすめライブラリ

ChainingAssertion
Moq

3.ビルド関連

3-1.構成マネージャ

4.プロジェクト

4-1. クラスライブラリ(.Net Framework)

Windows専用
「参照」がある。

4-2. クラスライブラリ(.Net Standard)

Android, iOS, Linux, macOS, WIndows
「参照」の代わりに「依存関係」がある。

4-3. クラスライブラリ(.Net Core)

Linux, macOS, Windows
「参照」の代わりに「依存関係」がある。

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