“适当的”如何找到 C# 编译器的路径?

发布于 2024-12-02 13:11:27 字数 366 浏览 1 评论 0原文

可能的重复:
C# - 如何获取 csc.exe 路径?

是否有“在给定系统上查找 C# 编译器路径的正确方法?

例如,对于 Java,“正确”的方法是使用 HKLM\Software\JavaSoft 注册表项来遍历所有不同的 JDK 及其位置,而不是假设所有内容都在 %ProgramFiles 中%\Java.

C#有类似的方法吗?

Possible Duplicate:
C# - How to get csc.exe path?

Is there a "proper" way to find the path to the C# compiler on a given system?

E.g. for Java, the "proper" way is to use the HKLM\Software\JavaSoft registry key to go through all the different JDKs and their locations, rather than assuming that everything is in %ProgramFiles%\Java.

Is there a similar method for C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

苯莒 2024-12-09 13:11:27

您可以在以下位置找到已安装框架的列表:
HKLM\Software\Microsoft.NetFramework

以及文件系统 %Windows%\Microsoft.NET\Framework

仅记住,您可以通过 .net 类本身访问编译器服务。

You can find a list installed frameworks in:
HKLM\Software\Microsoft.NetFramework

And on File system %Windows%\Microsoft.NET\Framework

Remembering only, you can access compiler services through the .net classes themselves.

如果没有你 2024-12-09 13:11:27

我更喜欢不太依赖系统的东西:

string cscPath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(typeof(object).Assembly.Location),"csc.exe");

I prefer something less system dependent:

string cscPath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(typeof(object).Assembly.Location),"csc.exe");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文