"Proper" way to find path to C# compiler? [duplicate]
Possible Dupl开发者_Go百科icate:
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#?
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:
string cscPath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(typeof(object).Assembly.Location),"csc.exe");
精彩评论