Monodevelop 代理设置
如何设置 Monodevelop 的代理设置?我尝试使用以下代码修改 Monodevelop.exe.config
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy
proxyaddress = "http://172.0.0.18:8080"
bypassonlocal = "true"/>
</defaultProxy>
</system.net>
但它没有采用 useDefaultCredentials="true"
属性,它在异常中显示 Unrecognized attribute 'useDefaultCredentials'盒子。此外,我的代理设置需要用户 ID 和密码,并且此凭据与 Windows 登录凭据不同。那么我该如何为 Monodevelop 指定这些呢?
How do I set the proxy settings of Monodevelop? I tried to modify the Monodevelop.exe.config with the following code
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy
proxyaddress = "http://172.0.0.18:8080"
bypassonlocal = "true"/>
</defaultProxy>
</system.net>
But its not taking useDefaultCredentials="true"
attribute, it is saying Unrecognized attribute 'useDefaultCredentials' in the exception box. Moreover my proxy settings need userid and password and this credential is different from Windows Logon credentials. So how do I specify those for Monodevelop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与为任何 .NET 应用程序配置代理相同。 IIRC,如果启用自动检测,则.NET 将使用 WinHTTP 代理设置,该设置是通过 IE 或 proxycfg.exe 设置的。
关于。您的主要问题, useDefaultCredentials 属性应该位于
< ;proxy>
元素,而不是
元素。This is the same as configuring the proxy for any .NET app. IIRC, if autodetection is enabled, then .NET will use the WinHTTP proxy settings, which are set through IE or proxycfg.exe.
Re. your main question, the useDefaultCredentials attribute should on the
<proxy>
element, not the<defaultProxy>
element.