Configure Visual Studio across your organization with .vsconfig

Heath Stewart

As application requirements grow more complex, so do our solutions. Keeping developers’ environments configured across our organizations grows equally complex. Developers need to install specific workloads and components in order to build a solution. Some organizations add these requirements to their README or CONTRIBUTING documents in their repositories. Some organizations might publish these requirements in documents for new hires or even just forward emails. Configuring your development environment often becomes a day-long chore. What’s really needed is a declarative authoring model that just configures Visual Studio like you need it.

In Visual Studio 2017 Update 15.9 we added the ability to export and import workload and component selection to a Visual Studio installation configuration file. Developers can import these files into new or existing installations. Checking these files into your source repos makes them easy to share. However, developers still need to import these to get the features they need.

Automatically install missing components

New in Visual Studio 2019: you can save these files as .vsconfig files in your solution root directory and when the solution (or solution directory) is opened, Visual Studio will automatically detect which components are missing and prompt you to install them.

Installing missing components

You can find an example of this in the vswhere repo on GitHub. When you click the Install link, you’re prompted to install any missing components. You can click the View full installation details link if you’d like to select additional components.

Install missing components Installing missing components

Exporting your configuration

In Visual Studio 2019, you can create a .vsconfig file right from Solution Explorer:

  1. Right-click on your solution.
  2. Click Add > Installation Configuration File
  3. Confirm the location where you want to save the .vsconfig file (defaults to your solution root directory).
  4. Click Review details
  5. Select or deselect any changes you want to make and click Export

To help keep the installation footprint minimal, only export those components you know you need to build, test, and possibly publish your solution. One way you can do this is to install a second instance of Visual Studio or install into a virtual machine, add those workloads and optional components you know are necessary, and build and test your solution. Add components as needed until the solution builds successfully, then export your configuration.

For more details, see our documentation.

Feedback

We love to hear your feedback! You can report a problem or make suggestions for this or any other feature in Visual Studio on our Developer Community site.

 

18 comments

Discussion is closed. Login to edit/delete existing comments.

  • Lucas Trzesniewski 0

    Very nice! 
    Will VS look for the .vsconfig file into all parent directories though, like MSBuild does for Directory.Build.props for instance?
    (we have a repository which contains lots of solutions, I’d like to configure them all with a single file)

    • Heath StewartMicrosoft employee 0

      Currently, we only look in $(SolutionDir). Please feel to open a feature suggestion at https://developercommunity.visualstudio.com and we will consider. I think it’s a great idea for projects with large solution trees. Speaking of multiple solutions, have you checked on .slnf files in #VS2019? You can maintain a single .sln (no duplication, a single build source) but have multiple .slnf files that filter the projects in Solution Explorer.

      • Lucas Trzesniewski 0

        Ok, I posted the feature suggestion.

        Thanks for the .slnf suggestion – it looks like a good fit for some of our solutions (we have an application with multiple independent modules for instance), but won’t work for the whole repository, as it contains unrelated projects I’d rather not bundle into a single (huge) solution.

      • Wil Wilder Apaza Bustamante 0

        This comment has been deleted.

      • Thomas Schrot 0

        Works the .slnf suggestion also with TFS? I tried it and Visual Studio replied that there is no support for those type of projects.
        And is it possible to include/install my own components/VSPackages with .vsconfig? We created a Policy Plugin and it is necessary that every team member install this plugin.

  • Ivan G 0

    Another awesome step forward to F5 experience, thank you!

  • Kirk Fertitta 0

    Heath,
    Do .vsconfig files exported from VS2017 work reliably in VS2019, or is it best to keep them specific to a VS version?  Does it work in the other direction as well, assuming any workloads selected existed downlevel?

    • Selma IkizMicrosoft employee 0

      Kirk, you can use the VS2017 file in VS 2019 as we dont keep any version information in these files, and it should also work down level as well. If you get a chance to try, please tell us how it went. 

  • Matthew Kane 0

    Instead of installing in a VM to get the minimum config and test it, would a container work as well?

  • Martin Sedlmair 0

    Very nice work. As suggested by @Lucas Trzesniewski in our case it would only work well if the .vsconfig would be searched also in parent directories.
    Another point I have, it’s always very hard to find the improvements you make since they are scattered on so many places. Why don’t you post this on the Visual Studio Blog https://devblogs.microsoft.com/visualstudio/?

  • Mohammed Muslmani 0

    Thank you!

  • Francesco Formenti 1

    Very useful!
    I didn’t find a place to select which Extensions should be installed.. are them included in the .vsconfig or do you plan to add them to it?
    For example it would be useful to automatic install “ResXManager”, “VSColorOutput”, “Git Diff Margin”, etc.. for all developers using the solution.
    Thank you!

    • Fabian Schmied 1

      @Heath Would you comment on that? Is this feature available or do you plan to add it to .vsconfig?

  • Gerald Wiltse 0

    Will MSBuild be able to auto-install the necessary modules to build a project, or only the Visual Studio GUI?  I assume only the GUI.

  • John Schroedl 0

    I tried this today and my first attempt failed b/c I named the file based on a particular product SKU. ex.  ContosoV3.vsconfig since I had planned to use these with the installer too.  ex:  vs_professional.exe –config \\server\configs\ProductA.vsconfig    It worked in the IDE once I renamed to just .vsconfig but it sure would be handy to be able to name it something else in my usage…

  • Jakub Januszkiewicz 0

    Very useful feature!
    Do you happen to know when .NET Framework 4.8 targetting pack is going to be added to the VS Installer? I want to use .vsconfig to offer easy installation of the SDK to all developers in my team, but I’m unable to. The question on Developer Community has no updates since May: https://developercommunity.visualstudio.com/content/problem/580235/net-framework-48-sdk-and-targeting-pack-in-visual.html.

Feedback usabilla icon