我在 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 模式;有什么想法吗?
答案 0 :(得分:25)
基于this source,您可以通过csproj执行此操作:
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
</PropertyGroup>