Monodevelop 代理设置

发布于 2024-09-16 14:55:38 字数 543 浏览 5 评论 0原文

如何设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘸点软妹酱 2024-09-23 14:55:38

这与为任何 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文