Skip to content

Instantly share code, notes, and snippets.

@natelowry
Last active April 18, 2018 21:18
Show Gist options
  • Save natelowry/f112c921ed204d734e0d19df150ffd76 to your computer and use it in GitHub Desktop.
Save natelowry/f112c921ed204d734e0d19df150ffd76 to your computer and use it in GitHub Desktop.
VS 2017 performance tricks

Step 1: make sure you've got the latest version (15.5.1 at the time of this writing)

Disable the performance profiling/tooling (sry, no screenshot)

Disable JS debugging:

image

Disable ESLint:

image

Only analyze projects which contain files opened in the editor:

image

Disable WebForms:

image

Disable XAML:

image

If you really must, disable the new JS language service (you probably don't need to do this):

image

Don't know about this, but you could try adding more ignores to the code analysis:

image

Disable Task Runner and vshub.exe from This SO Post by placing a file called devenv.pkgundef in your VS Common7/IDE folder (for me C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\) with the following content:

// Exclude TaskRunnerExplorer
[$RootKey$\Packages\{b483c4e7-43a6-4f7b-a9a1-79e2c5d12148}]
// Exclude VsHubServicePackage
[$RootKey$\Packages\{F419E6BB-F72F-42CF-ACFE-D0D0E17FCB17}]
// Exclude JavaScriptWebExtensionsPackage
[$RootKey$\Packages\{30db8f9b-ec9f-44d6-b377-83c7c27a1a8b}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment