I am trying to use the Build demo. After adding to the config files of devenv.exe and of fsi.exe, I dont have pb loading dll's anymore.
While I could modify the twitter samples to use my company's proxy, the freebase type provider does not seem to allow such override.
While my VS environment accesses the web without pb, FSI.exe does not seem to be able to go through my specified proxy. How can I force it to use by default a proxy I specify ? How is it that devenv.exe does not need any specific settings ?
PS : The following config, in the same directory that fsi.exe, did not work :
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy usesystemdefault = "false" proxyaddress = "ipaddress:portnumber" bypassonlocal = "true"/>
</defaultProxy>
<loadFromRemoteSources enabled="true" />
<legacyUnhandledExceptionPolicy enabled="true" />
</runtime>
</configuration>