I have a .NET Core application (MyApp.exe) developed in VS2017 running in SDK version 1.0.4 . I tried adding App.configwith the following data:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<gcServer enabled="true"/>
</runtime>
</configuration>
Which of the assembly is renamed to: MyApp.config.
But this does not change the GC mode; Any ideas?
MaYaN source
share