Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing Visual Basic project Templates from Visual Studio 2019?

Is there a way to remove the Visual Studio project templates from showing up in Visual Studio 2019? I'm never going to use them and I've had multiple occurences where I accidentially created a new Visual Basic project instead of a C# project.

enter image description here

I've tried removing the physical files from Common7\IDE\ProjectTemplates and clearing the cache but the project templates keep showing up in the dialog.

like image 679
Mark Avatar asked Dec 10 '25 23:12

Mark


1 Answers

to remove a template from Visual Studio you may use:

dotnet new --uninstall NAMEOFTEMPLATE.Template

to uninstall some project types (Visual Basic maybe) try Change Visual Studio Tool from Setup...

like image 75
SoftWar Avatar answered Dec 14 '25 02:12

SoftWar