Infine ho scritto una classe per rilevare la versione di Visual Studio. Testato e funzionante:
public static class VSVersion
{
static readonly object mLock = new object();
static Version mVsVersion;
static Version mOsVersion;
public static Version FullVersion
{
get
{
lock (mLock)
{
if (mVsVersion == null)
{
string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "msenv.dll");
if (File.Exists(path))
{
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(path);
string verName = fvi.ProductVersion;
for (int i = 0; i < verName.Length; i++)
{
if (!char.IsDigit(verName, i) && verName[i] != '.')
{
verName = verName.Substring(0, i);
break;
}
}
mVsVersion = new Version(verName);
}
else
mVsVersion = new Version(0, 0); // Not running inside Visual Studio!
}
}
return mVsVersion;
}
}
public static Version OSVersion
{
get { return mOsVersion ?? (mOsVersion = Environment.OSVersion.Version); }
}
public static bool VS2012OrLater
{
get { return FullVersion >= new Version(11, 0); }
}
public static bool VS2010OrLater
{
get { return FullVersion >= new Version(10, 0); }
}
public static bool VS2008OrOlder
{
get { return FullVersion < new Version(9, 0); }
}
public static bool VS2005
{
get { return FullVersion.Major == 8; }
}
public static bool VS2008
{
get { return FullVersion.Major == 9; }
}
public static bool VS2010
{
get { return FullVersion.Major == 10; }
}
public static bool VS2012
{
get { return FullVersion.Major == 11; }
}
}
fonte
2012-06-19 08:32:58
Questa soluzione ha senso rispetto a DTE.Version, poiché prima o poi DTE sarà deprecato da VS API (nello stesso modo in cui la tecnologia addin VS è stata deprecata). Il codice proposto può essere migliorato usando fvi.FileMajorPart e fvi.FileMinorPart che restituisce due interi, evitando così la parte di parsing delle stringhe nel codice proposto. –
+1 perché questo codice recupera la versione completa (ad esempio 11.0.61030.00) che può essere utilizzata per dedurre il livello di aggiornamento di VS. DTE.Version restituisce solo ad es. "11.0" –
Qualsiasi motivo per preferire msenv.dll su devenv.exe? Solo curioso. Inoltre: mi chiedo se c'è davvero bisogno di un blocco? –