Table of Contents
Here's how to disable the package that is responsible for loading the Git source control support in Visual Studio. Use at your own risk!
- Create a file called devenv.pkgundef and place it next to
devenv.exein you Visual Studio'sCommon7\IDE(you'll need elevation for this) - Add the following entries to the file:
[$RootKey$\Packages\{7fe30a77-37f9-4cf2-83dd-96b207028e1b}]
[$RootKey$\SourceControlProviders\{11b8e6d7-c08b-4385-b321-321078cdd1f8}]
- Close VS if open, open a Developer command prompt, and type
devenv /updateconfiguration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '========================================================================= | |
| ' | |
| ' https://github.com/wqweto/UcsFiscalPrinters/blob/master/src/Shared/mdJson.bas | |
| ' JSON parsing and dumping functions | |
| ' | |
| '========================================================================= | |
| Option Explicit | |
| DefObj A-Z | |
| Private Const MODULE_NAME As String = "mdJson" |