大家好我编写了一个PowerShell,它将使用PowerShell中的devenv
构建解决方案。一切都运行良好,但是从Visual Studio构建时我得到的错误是我在日志文件中看不到的那些错误,我唯一得到的是
========== Build: 0 succeeded or up-to-date, 1 failed, 0 skipped ==========
但不是实际的错误,这里是脚本
$vsPath= (Get-Item 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\devenv.exe').GetValue($name)
$parameters = """$SlnFile"" /Build development /project ""$SlnPath"" /out $logPath"
Start-Process -FilePath $vsPath -ArgumentList $parameters -Wait