内容目录
As shown in the figure:
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.
文章评论