“Visual Studio Integration Package” vs “Visual Studio Add-in”: what is the difference?

Ok, you can find a full detailed comparison here (there are also links to the previous parts in the series). But basically, add-ins were available as the VS extension type from the very first versions of the VS and built as the COM components. Later on, some limitations were discovered in that approach, so the … Read more

Case preserving find/replace in Visual Studio

It’s not possible in Visual Studio at the moment. You can vote for this feature: https://developercommunity.visualstudio.com/content/idea/580810/case-preserving-search-replace.html I usually end up opening Sublime Text, Copy & Paste the code there, perform the case-preserving replacements there and Copy & Paste back to Visual Studio.

removing #region

Just use Visual Studio’s built-in “Find and Replace” (or “Replace in Files”, which you can open by pressing Ctrl + Shift + H). To remove #region, you’ll need to enable Regular Expression matching; in the “Replace In Files” dialog, check “Use: Regular Expressions”. Then, use the following pattern: “\#region .*\n“, replacing matches with “” (the … Read more

What are the differences in the VisualStudio Add-ins for Mercurial? [closed]

Well, let’s compare the details of development: VisualHg’s page says it’s stable. The last version release was March of this year and the latest changesets in the source are from 1 week ago. HgSccPackage (better found here than your other link) was last updated in the VS Gallery 2 days ago. (It can also be … Read more