Visual Studio 2017具有源控件提供程序(Team Foundation Server,Git,...)的设置。有人知道如何从脚本或Visual Studio存储此设置的位置设置此设置吗?
可以使用vsregedit.exe
设置源控制提供程序。
要从PowerShell脚本中将Git设置为源控件提供程序:
$vsWherePath = Join-Path ${env:ProgramFiles(x86)} "Microsoft Visual Studio\Installer\vswhere.exe"
$vsVersion = "[15.0,16.0)"
$installPath = &$vsWherePath -all -latest -version $vsVersion -property installationPath
$vsregedit = Join-Path $installPath 'Common7\IDE\vsregedit.exe'
&$vsregedit set "$installPath" HKCU CurrentSourceControlProvider `"`" string "{11B8E6D7-C08B-4385-B321-321078CDD1F8}"