如何在.NET Core中启用Server GC?

时间:2017-05-17 21:47:03

标签: c# .net garbage-collection .net-core

我在 1.0.4 版本的上运行 VS2017 的.NET Core应用程序( MyApp.exe ) > SDK 。我尝试使用以下条目添加App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <runtime>
    <gcServer enabled="true"/>
  </runtime>
</configuration>

在构建时将其重命名为:MyApp.config

但这不会改变 GC 模式;有什么想法吗?

1 个答案:

答案 0 :(得分:25)

基于this source,您可以通过csproj执行此操作:

<PropertyGroup>
  <ServerGarbageCollection>true</ServerGarbageCollection>
</PropertyGroup>