

It provides a development environment on a device (such as a Chromebook or an iPad/tablet) that doesn’t let users install the Visual Studio Code desktop application. Microsoft has detailed a few use cases of this new Visual Studio Code Server service. “You can install the server wherever you like (a local development machine, a VM in the cloud, etc.) and access it securely through the browser using VS Code for the Web (also known as v), without the hassle of setting up SSH or https (although you can do that if you want as well,” said Brigit Murtaugh, Program Manager on the Microsoft VS Code team. Microsoft says that the tunneling process helps to ensure the secure transmission of data between networks. The CLI of the VS Code Server creates a tunnel between the remote machine and the Visual Studio Code client. The big highlight of this release is a private preview of the Visual Studio Code Server, a backend service that lets developers securely connect to the editor via a web browser.
#Visual studio 2022 launch update#
I actually went a step farther and also added the -incognito (single dash is intentional) parameter to my list since I almost always open an incognito window so everything is fresh and I’m not getting cookie / caching conflicts, etc.Microsoft has recently released a new update (version 1.69) for Visual Studio Code.

This essentially tells Chrome to use a separate directory just for debugging and did the trick for me I updated the command line arguments to this: -auto-open-devtools-for-tabs -user-data-dir=c:\dev\chrome. Chrome has another command line parameter to use a different data directory, and this is what I chose to do.


In the Arguments field, enter the command line switch to open devtools, -auto-open-devtools-for-tabs. On many machines it is located at "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", however sometimes it may be installed in your local profile (e.g. In the Program field, enter the path to Google Chrome. To add a new browser to Visual Studio, follow these steps: Step 1Ĭlick the down arrow to the right of IIS Express, and select the Browse With. This should be simple enough – just configure a new browser for Visual Studio to use. I thought it would be nice to have Visual Studio launch Chrome with the developer tools window already open.Īfter doing some digging, I discovered that Chrome has a command line option to open devtools: -auto-open-devtools-for-tabs. Sure, it’s easy to just press F12, but after a while, I got sick of having to do that each time. Sometimes when debugging an app, I’ll need to frequently open the developer tools in Google Chrome for assistance.
