forked from Appdynamics/AppDynamics.DEXTER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
29 lines (29 loc) · 1.2 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true">
<!--
This proxy setting is for using whatever is in Internet Explorer
-->
<proxy usesystemdefault="true" />
<!--
This proxy setting is for local Fiddler debugging
Make sure to comment out all other proxy settings if you use this one
<proxy proxyaddress="http://127.0.0.1:8888" />
-->
<!--
This proxy is for the authenticated proxy on your network
Make sure to comment out all other proxy settings if you use this one
<proxy proxyaddress="http://youruser:[email protected]:12345" />
-->
<!--
This proxy is for the proxy autoconfigured by script
Make sure to comment out all other proxy settings if you use this one
<proxy scriptLocation="http://your.fqdn.com/yourscript.pac" />
-->
</defaultProxy>
</system.net>
</configuration>