• [转] Visual Studio Code behind a proxy


    http://www.tuicool.com/articles/jyyIBf3

    http://blog.majcica.com/2016/04/07/visual-studio-code-behind-a-proxy/?utm_source=tuicool&utm_medium=referral

    This post is kind of a continuation of Tough life behind a proxy series. This time is the moment of Visual Studio Code. This application does require the web access when it come to plugin installation. If you are behind a proxy, it will not be the easiest thing to achieve.

    To set the proxy in Visual Studio Code you need to edit the User Settings. You can do so by opening them from the Preference menu:

    Once you open it you will be presented with a screen showing the default settings and your user settings file that does override the default settings:

    Now you can enter the following:

    // Place your settings in this file to overwrite the default settings
    {
     "http.proxy": "http://my.proxy.address:8080",
     "https.proxy": "http://my.proxy.address:8080",
     "http.proxyStrictSSL": false
    }
    

    Some of these information is quite easy to retrieve on interweb, however often they do not mention https and disabling strict SSL. In order to install your extension this is a necessary setting.Make sure you have the latest version of Visual Studio Code installed before testing this as in some older versions this was not supported.

    Save your settings and restart Visual Studio Code. Try now installing an extension, it should be a success.

    If you are unaware on how to install an extension in Visual Studio Code, you can find more about this argument in the following blog post Announcing PowerShell language support for Visual Studio Code and more! under “Installing the extension” paragraph. To check the available extensions, please visit Visual Studio Marketplace .

    Cheers

  • 相关阅读:
    IDEA快捷键收集
    Jmeter录制HTTPS
    Jmeter 线程组、运行次数参数化
    fiddler 抓取iphone发出的http和https包
    Appium 点击屏幕
    安卓程序如何保证低内存下依然存在
    listview
    数据库操作
    数据存储
    测试
  • 原文地址:https://www.cnblogs.com/RobotTech/p/5662716.html
Copyright © 2020-2023  润新知