Methods for Configuring .NET Runtime

2023年11月22日 24点热度 0人点赞 0条评论
内容目录

As shown in the figure:
file

There are two configuration forms.
One is to configure the template file within the project (for executable projects, not applicable for libraries), and the other is to configure it after the project has been compiled.

The first method involves creating a new runtimeconfig.template.json file in the project.

An example is as follows:

{
  "runtimeOptions": {
    "configProperties": {
      "System.GC.ConserveMemory": 9
    }
  }
}

The other method is to modify the {ProjectName}.runtimeconfig.json file located underneath the project after it has been compiled. You can simply edit it manually.

痴者工良

高级程序员劝退师

文章评论