Visual Studio命令提示符无需安装Visual Studio
是否可以在不安装 Visual Studio 的情况下运行 Visual Studio 命令 Promt? 我想从 vs 命令提示符安装 regasm.exe,因为我们的服务器是 64 位。 我的要求寄存器使用32位模式。
is it possible to run visual studio command promt without installing visual studio?
i want to install regasm.exe from the vs command prompt as our server is 64bit.
And my requirement register using 32bit mode.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
regasm.exe
是 .NET Framework 安装的一部分,因此不一定是 Visual Studio 的一部分。在服务器上的目录
C:\WINDOWS\Microsoft.NET
中浏览。在 x64 计算机上,您将看到保存 32 位版本的目录C:\WINDOWS\Microsoft.NET\Framework
,以及C:\WINDOWS\Microsoft.NET\Framework64
对于 64 位版本,当然。您应该会在这些目录中看到不同 .NET 版本的子文件夹,例如
v2.0.50727
、v3.0
和v3.5
。regasm.exe
可以在这些文件夹中找到。 (由于 .NET v3.0 和 v3.5 建立在 v2x.x 之上,因此它不在那里,但可以在 v1.0x、v1.1x 和 v2.0x 中找到。)因此,最新的 32- regasm 的位版本可以在
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe
中找到,您可以从任何命令提示符运行它。regasm.exe
is part of the .NET Framework installation, and thus not necessarily a part of Visual Studio.Browse around in the directory
C:\WINDOWS\Microsoft.NET
on your server. On an x64 machine, you will see the directoryC:\WINDOWS\Microsoft.NET\Framework
where the 32-bit versions are kept, andC:\WINDOWS\Microsoft.NET\Framework64
for the 64-bit versions, natch.You should see sub-folders inside those directories for the different .NET versions like
v2.0.50727
,v3.0
andv3.5
.regasm.exe
can be found inside those folders. (Since .NET v3.0 and v3.5 build upon v2x.x, it's not in there, but can be found in v1.0x, v1.1x, and v2.0x.)Thus, the latest 32-bit version of regasm can be found at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe
, which you can run from any command prompt.