1

我已经使用 asdf-vim 安装了 .Net Core 3.1.300 并且正在关注csharp 教程。当我运行时:

dotnet new console -n BranchesAndLoops -o .

它确实使用了大量的内存。这是 C# 世界的规范吗?还是错误地将某些东西配置为 dotnet 新手?

在此处输入图像描述

❯ dotnet --info
.NET Core SDK (reflecting any global.json):
 Version:   3.1.300
 Commit:    b2475c1295

Runtime Environment:
 OS Name:     Mac OS X
 OS Version:  10.15
 OS Platform: Darwin
 RID:         osx.10.15-x64
 Base Path:   /Users/ogirginc/.asdf/installs/dotnet-core/3.1.300/sdk/3.1.300/

Host (useful for support):
  Version: 3.1.4
  Commit:  0c2e69caa6

.NET Core SDKs installed:
  3.1.300 [/Users/ogirginc/.asdf/installs/dotnet-core/3.1.300/sdk]

.NET Core runtimes installed:
  Microsoft.AspNetCore.App 3.1.4 [/Users/ogirginc/.asdf/installs/dotnet-core/3.1.300/shared/Microsoft.AspNetCore.App]
  Microsoft.NETCore.App 3.1.4 [/Users/ogirginc/.asdf/installs/dotnet-core/3.1.300/shared/Microsoft.NETCore.App]

To install additional .NET Core runtimes or SDKs:
  https://aka.ms/dotnet-download
4

1 回答 1

1

尽管我已经使用 asdf-vm 安装了 dotnet,但后来我下载了 Visual Studio for Mac 和 Visual Studio Code(安装了其他东西,我不知道它们是什么)来尝试它们,而不是修补我的 vimrc。

可能同时使用 asdf-vm 和 Visual Studio for Mac 会导致一些内部问题,导致 dotnet 卡在挂起状态,内存泄漏逐渐增加。

卸载 VS for Mac 和 VS code 后,高内存问题不再发生。

于 2020-06-03T20:54:04.583 回答