Visual Studio Settings for Presentations

3 minute read

There was a twitter conversation, started by @julielerman around building an extension would quickly disable the Quick Info feature for C# to make it easier for presenters/twitchers and others when recording demos or showing code.

It quickly changed to building an extension to quickly switch between settings in Visual Studio.

I chimed in a couple of times about how I accomplish this without a Visual Studio extension so I decided to blog about it. Luckily, the master of Visual Studio extensions, @mkristensen, and Program Manager for Visual Studio Extensibility, chimed in that he has a solution in mind to make it easier. In either case, let’s get to it.

Tools Needed

The list is simple Visual Studio (any edition) and something that syncs folders/drives (optional). I use OneDrive for synchronizing/backing up key files but you can use whatever is easier for you.

The Process

Step 1: Save your ‘Default’ settings

If you are unsure how to save your settings, check out Environment Setting for Visual Studio in the MSDN docs. Feel free to call the settings whatever you wish, I use ‘default’ because these are my day to day, or week to week settings lately :smile:, for Visual Studio.

Step 1a: Save your files to OneDrive

Again, you can save these to where ever you want, I chose OneDrive because a have a few different machines I use for presentations, both work and personal, but I like my settings to be the same. So save off your ‘default’ settings to a OneDrive folder. Mine are saved off to Presentations\Settings.

Step 2a: Create your Presentation settings

There are probably 3,000,000 opinions on what makes a good set of settings for presentations. There are a couple of things I change with mine, the Font, the Font Size, and the Current Line.

For the font, I was using Source Code Pro for a while. Lately, I have been switching between Monaco and Menlo. Pick whatever font you like. There is a pretty good blog post that author shows their Top 11 Programming Fonts for editing source code.

For the font size, I chose 16, which is normally good for most screens.

I also change the Current Statement display item. I modify the item background to yellow so that it is easier to follow along.

While most of us only change the fonts, colors, etc for the Text Editor, depending on what you are showing, you might want to change others like Editor Tooltip, Immediate Window, Output Window, Data Tips, and more. Take a look at the Show setting for: drop down for more options. You can see the settings I use for presentations in this folder or directly ‘presentations.vssettings

Step 2b: Save your Presentation settings

Now save your new presentation settings to the same folder as before. This is not required. It just makes it easier to find the settings later.

Conclusion

Now you have two different settings that you can load based on your needs at the time. To switch between them import the setting you want. Just be sure to chose No, just import new settings, overwriting my current settings when you do.

Hopefully Mads and team come up with a solution to make it a little bit easier to swap between settings for those of us that do it a little more often.