2
7

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 1 year has passed since last update.

VSCodeでC#の.NET Frameworkプロジェクトを作成する

Last updated at Posted at 2023-04-30

はじめに

Visual Studio Code (VSCode)でC#の.NET Framework4.8開発環境をセットアップしたときのメモです。

前提

下記の条件が前提です。

  • Windows PCでVSCodeがインストールされていること

環境設定

参考:VSCodeでC#開発環境整えちゃう(グッバイVisual Studio)

プロジェクト作成

WPFアプリか、コンソールアプリを選択して、プロジェクトを作成します。

  • WPFの場合(例)
    dotnet new wpf --target-framework-override net48 -lang c# -o webcam
  • コンソールアプリの場合(例)
    dotnet new console --target-framework-override net48 -lang c# -o webcam_console

コマンド実行後に、プロジェクト名のフォルダが作成されるので、エクスプローラーでフォルダを右クリックし、「Codeで開く」で開けば、開発が始められます。

参考:VSCodeで.NET Frameworkを利用する。-.NET Framework利用のための手続き(コンソールアプリケーションの開発準備)

応用例

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?