1
1

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 5 years have passed since last update.

VSCodeで c# のバージョンを変える方法

Posted at

使用エディタ

visual studio code

問題

visual studio codeで C#6 のままで作業している場合、
例えば以下のプロパティの get ステートメントはエラーになる。

適当なプロパティ例
   public int ID { get => this.id; }
エラー文
Feature 'expression body property accessor' is not available in C# 6. Please use language version 7.0 or greater. [Assembly-CSharp]

要は language version というのを 7.0以上にしなさいということのようだ。

※ ちなみに、この記述のドキュメントはこちら
https://docs.microsoft.com/ja-jp/dotnet/csharp/programming-guide/statements-expressions-operators/expression-bodied-members#property-set-statements

対応方法

[プロジェクト名].csprojの中の <LangVersion>6</LangVersion>7 以上にしてあげればOK。

  <PropertyGroup>
    <LangVersion>7</LangVersion>
  </PropertyGroup>

これでC#7.0の文を書いてもエラーが出なくなった。
ちなみに Unity だと、デフォルトで Assembly-CSharp.csproj というファイル名だと思う。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?