gpt4 book ai didi

c# - 通过 MSBuild 执行 Powershell 脚本时找不到 "Microsoft.SqlServer.BatchParser.dll"

转载 作者:太空宇宙 更新时间:2023-11-03 18:22:18 26 4
gpt4 key购买 nike

我们有一个 MSBuild 进程当前执行一组脚本,其中一个是 Powershell 脚本,它使用 powershell 中的一些 SMO 工具。如果我将 MSBuild 打印的行复制并粘贴到命令提示符中,它可以完美运行,但是无论何时运行 MSBuild,它都找不到程序集。

我已经打印了环境变量,它们是相同的所以我假设它是 .targets 中的一个属性但是对于我的生活我找不到打印它正在扫描的变量的方法因为或知道它会在哪里。

Could not load file or assembly 'Microsoft.SqlServer.BatchParser, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.]

有什么想法或解决方案可以帮助我吗?

最佳答案

我在版本 14 中遇到了完全相同的问题。我编辑了这个答案,因为我发现了我的问题的本质:msbuild 正在生成 32 位 powershell,而当我从“运行”或快捷方式运行 powershell 时,它是64 位。

这是手动重现的问题:

PS C:\Windows\SysWOW64\WindowsPowerShell\v1.0> [Environment]::Is64BitProcess
False
PS C:\Windows\SysWOW64\WindowsPowerShell\v1.0> Invoke-Sqlcmd
Invoke-Sqlcmd : Could not load file or assembly 'Microsoft.SqlServer.BatchParser, Version=14.100.0.0, Culture=neutral,
PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
At line:1 char:1
+ Invoke-Sqlcmd
+ ~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Invoke-Sqlcmd], FileNotFoundException
+ FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.SqlServer.Management.PowerShell.GetScriptCommand
PS C:\Windows\SysWOW64\WindowsPowerShell\v1.0>

当我运行 64 位版本时 Invoke-Sqlcmd 工作正常:

PS C:\Windows\System32\WindowsPowerShell\v1.0> [Environment]::Is64BitProcess
True
PS C:\Windows\System32\WindowsPowerShell\v1.0> Invoke-Sqlcmd
PS C:\Windows\System32\WindowsPowerShell\v1.0>

正如您在上面看到的,调用 Invoke-Sqlcmd 正在运行(不会导致异常)。在这个阶段,我不知道为什么 Sqlcmd 缺少一些 32 位程序集。

我是这样称呼我的 msbuild 项目的:

msbuild -version 2>NUL || CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsDevCmd.bat"
CALL msbuild build-MYPROJECT.proj /Target:Build

我在 msbuild 项目中的目标之一是通过 Exec 标签调用 powershell.exe:

    <Exec ContinueOnError="False" Command="$(PowerShellExe) .\Scripts\upgrade-projects.ps1 $(SqlServer) '$(TempPath)\$(TemplateProjDb)_$(AssemblyVersion).sql' $(AssemblyVersion)" />

$(PowerShellExe) 的定义如下:

    <PowerShellExe>powershell.exe -NonInteractive -ExecutionPolicy Bypass</PowerShellExe>

我假设 msbuild 会生成默认的 64 位 powershell。但它没有(出于某种原因)。

整个困惑;这花费了我整个星期六 ;) 是 msbuild 项目,脚本在我的 Windows 10 笔记本电脑和我使用的其中一台 VM 机器上运行良好。当我尝试在不同的开发机器(还有 Windows 10、VS2017、相同的扩展包、所有更新等...)上运行时,我确实出现了上述问题。

所以我尝试将 PowerShellExe 更改为

 <PowerShellExe>C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -NonInteractive -ExecutionPolicy Bypass .\Scripts\concat-scripts.ps1 </PowerShellExe>

但它仍然执行 32 位版本。

现在我必须找到 msbuild 在其他机器上生成 32 位 powershell 而在我的笔记本电脑和虚拟机上默认为 64 位的原因。

或者简单地... 如何强制 32 位 msbuild 生成 64 位 powershell?

此时我尝试运行 64 位 msbuild(我不喜欢完整路径):

C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\amd64\msbuild.exe" build-MYPROJECT.proj

它正在生成 64 位 powershell。

这将是我的解决方案,如果

VsDevCmd.bat -arch=amd64 -host_arch=amd64

会自动指向 msbuild 64 位……但它不会。

问题仍然是为什么在一台机器上 32 位 msbuild 产生 64 位 powershell 而在另一台机器上却没有(即使我提供了 64 位的完整路径)?

关于c# - 通过 MSBuild 执行 Powershell 脚本时找不到 "Microsoft.SqlServer.BatchParser.dll",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48512280/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com