web-dev-qa-db-ja.com

MacのUnityで.NET4.xを使用する

[〜#〜] mac [〜#〜]で.NET 4.xを使用し、エディターとしてVSCodeを使用するにはどうすればよいですか?

私はそれらの設定を統一して設定しています:

enter image description here

VScodeで次のエラーが発生します:

The reference assemblies for framework ".NETFramework,Version=v4.7.1" were not found. To resolve this, install the SDK or Targeting Pack for this framework version or retarget your application to a version of the framework for which you have the SDK or Targeting Pack installed. Note that assemblies will be resolved from the Global Assembly Cache (GAC) and will be used in place of reference assemblies. Therefore your Assembly may not be correctly targeted for the framework you intend. Failed to load project file '/Data/unity_learn/RIG/Assembly-CSharp.csproj'. /Data/unity_learn/RIG/Assembly-CSharp.csproj /Users/doekewartena/.vscode/extensions/ms-vscode.csharp-1.16.0/.omnisharp/1.32.4/omnisharp/msbuild/15.0/Bin/Microsoft.Common.CurrentVersion.targets(1195,5): Error: The reference assemblies for framework ".NETFramework,Version=v4.7.1" were not found. To resolve this, install the SDK or Targeting Pack for this framework version or retarget your application to a version of the framework for which you have the SDK or Targeting Pack installed. Note that assemblies will be resolved from the Global Assembly Cache (GAC) and will be used in place of reference assemblies. Therefore your Assembly may not be correctly targeted for the framework you intend.Mac用の4.xバージョンのダウンロードが見つかりません。

10
clankill3r

Omnisharpは、利用可能な場合はデフォルトでdotnetを使用しますが、これでは必要なものには不十分です。 omn​​isharpでmono(必要なプロファイルが付属)を使用するには、次のことを行う必要があります。

  1. Mono5.8以降をインストールします。自作でインストールすることをお勧めします:brew install mono
  2. VSCodeのユーザー設定ファイルで、omnisharpにグローバルモノラルインストールを使用するように強制します。"omnisharp.useGlobalMono": "always"auto

VSCodeの出力は次のようになります。

[info]: OmniSharp.MSBuild.Discovery.MSBuildLocator
    Located 2 MSBuild instance(s)
        1: Mono 15.0 - "/usr/local/lib/mono/msbuild/15.0/bin"
        2: StandAlone 15.0 - "/Users/x/vscode/extensions/ms-vscode.csharp-1.17.1/.omnisharp/1.32.8/omnisharp/msbuild/15.0/Bin"

[info]: OmniSharp.MSBuild.Discovery.MSBuildLocator
    Registered MSBuild instance: Mono 15.0 - "/usr/local/lib/mono/msbuild/15.0/bin"

これを行った後も文句を言う場合(たとえば、間違ったモノラルインストールを選択した場合)、設定することでomnisharpに自作のモノラルを使用させることもできます

"omnisharp.monoPath": "/usr/local/"

またはモノラルの特定のインストール

"omnisharp.monoPath": "/usr/local/Cellar/mono/5.14.0.177/"

4
Andreia Gaita

MacでVisualStudio2017を使用できます

0
PrathapG

.NETFrameworkではなく.NETCoreを使用する必要があります。コアは2.1のみです。

残念ながら、この他の同様の質問をチェックしてください。

ここ

最初の2つの答えは、あなたが知る必要があることを教えてくれます。

0
PrinceOfRavens