“适当的”如何找到 C# 编译器的路径?
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在以下位置找到已安装框架的列表:
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.
我更喜欢不太依赖系统的东西:
I prefer something less system dependent: