本文介绍了代理背后的 Visual Studio Express 2013的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚下载并安装了适用于 Windows 桌面的 Visual Studio Express 2013.

I've just downloaded and installed visual studio express 2013 for windows desktop.

我在使用用户名/密码身份验证的代理后面工作,但我找不到如何注册产品(女巫现在处于活动状态 14 天).

I'm working behind a proxy with username/password authentication and I don't find how to register the product (witch is now active for 14 days).

每次:407 - 需要代理身份验证

Each time : 407 - Proxy Authentication Required

我尝试编辑 WDExpress.exe.config 以添加到部分

I tried editing the WDExpress.exe.config to add in the section

    <defaultProxy>
        <proxy
        usesystemdefault="true"
        proxyaddress="http://x.x.x.x:8080"
        bypassonlocal="true"
        />

但它也不起作用.

推荐答案

进入你的visual studio文件夹,搜索devenv.exe.config文件,搜索标签并将其替换为以下内容:

Go to your visual studio folder, search for the devenv.exe.config file, search for <system.net> tag and replace it with the following:

<system.net>
  <defaultProxy useDefaultCredentials="true" />
</system.net>

这篇关于代理背后的 Visual Studio Express 2013的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 20:11