Visual Studio 2015:无 64 位命令提示符
Visual Studio 2015: No 64-bit command prompt
在以前的 Visual Studio 版本中,x86 和 x64 有单独的命令提示符。 VS2015中只有一个,而且显式强制32位
@call "%VS140COMNTOOLS%VCVarsQueryRegistry.bat" 32bit No64bit
我的项目启动一个批处理文件预编译和 post-build 来调用 installutil 到 uninstall/reinstall 我的 windows 服务。为 x64 构建时,我收到消息:
System.BadImageFormatException: Could not load file or assembly...
An attempt was made to load a program with an incorrect format
有人有启动 64 位 visual studio 命令提示符的简单解决方案,而不是掉进兔子洞尝试更改脚本吗?我不敢相信这不是默认安装的。
您可以从标准命令提示符运行执行此操作:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
或者更直接地说,
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat"
当然要根据您的安装位置进行编辑。
在以前的 Visual Studio 版本中,x86 和 x64 有单独的命令提示符。 VS2015中只有一个,而且显式强制32位
@call "%VS140COMNTOOLS%VCVarsQueryRegistry.bat" 32bit No64bit
我的项目启动一个批处理文件预编译和 post-build 来调用 installutil 到 uninstall/reinstall 我的 windows 服务。为 x64 构建时,我收到消息:
System.BadImageFormatException: Could not load file or assembly...
An attempt was made to load a program with an incorrect format
有人有启动 64 位 visual studio 命令提示符的简单解决方案,而不是掉进兔子洞尝试更改脚本吗?我不敢相信这不是默认安装的。
您可以从标准命令提示符运行执行此操作:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
或者更直接地说,
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat"
当然要根据您的安装位置进行编辑。