I have a multi-user bootloader and I use this app.config to work
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v2.0.50727"/></startup>
<system.net>
<connectionManagement>
<add address="*" maxconnection="65000" />
</connectionManagement>
</system.net>
</configuration>
How can I put this file in my executable file or somehow set this parameter inside?
source
share