I have a multipart downloader, and to get it working I'm using this app.config
<?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 that file into my executable or somehow set this param internally?