Visual Studio命令提示符无需安装Visual Studio

发布于 2024-09-07 19:29:46 字数 118 浏览 2 评论 0原文

是否可以在不安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过潦 2024-09-14 19:29:46

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.50727v3.0v3.5regasm.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 directory C:\WINDOWS\Microsoft.NET\Framework where the 32-bit versions are kept, and C:\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 and v3.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文