Skip to content

Instantly share code, notes, and snippets.

@trashvin
Last active May 28, 2019 04:02
Show Gist options
  • Save trashvin/74a271aeeb6e4cd2f166de06609f3545 to your computer and use it in GitHub Desktop.
Save trashvin/74a271aeeb6e4cd2f166de06609f3545 to your computer and use it in GitHub Desktop.
@echo off
ECHO **********************************************************
ECHO NOTE :
ECHO Code Analysis is enabled by default and for a good reason
ECHO Use this script at your own risk
ECHO **********************************************************
ECHO .
ECHO Starting Visual Studio 2013 with Code Analysis OFF
set DevDivCodeAnalysisRunType=Disabled
devenv
@trashvin
Copy link
Author

This batch file starts Visual Studio 2013 with Code Analysis OFF
Benefits : Faster build of solutions with large number of projects
Disclaimer : Code Analysis is enabled by default and for a reason, use this script with risk
How to use :

  1. Down load the batch file or create your own file with these contents
  2. Copy the batch file to c:\Program Files\Microsoft Visual Studio 12.0 (your system maybe different)
  3. Instead of running VStudio by clicking the program, run this script to start VStudio

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment