30 references to DotNetFrameworkArchitecture
MSBuild (30)
FrameworkLocationHelper.cs (30)
446
: GetPathToDotNetFrameworkV11(
DotNetFrameworkArchitecture
.Current);
456
: GetPathToDotNetFrameworkV20(
DotNetFrameworkArchitecture
.Current);
466
: GetPathToDotNetFrameworkV30(
DotNetFrameworkArchitecture
.Current);
476
: GetPathToDotNetFrameworkV35(
DotNetFrameworkArchitecture
.Current);
486
: GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
.Current);
496
: GetPathToDotNetFrameworkV45(
DotNetFrameworkArchitecture
.Current);
719
internal static string GetPathToDotNetFrameworkV11(
DotNetFrameworkArchitecture
architecture)
724
internal static string GetPathToDotNetFrameworkV20(
DotNetFrameworkArchitecture
architecture)
729
internal static string GetPathToDotNetFrameworkV30(
DotNetFrameworkArchitecture
architecture)
734
internal static string GetPathToDotNetFrameworkV35(
DotNetFrameworkArchitecture
architecture)
739
internal static string GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
architecture)
744
internal static string GetPathToDotNetFrameworkV45(
DotNetFrameworkArchitecture
architecture)
751
return GetPathToDotNetFramework(version,
DotNetFrameworkArchitecture
.Current);
754
internal static string GetPathToDotNetFramework(Version version,
DotNetFrameworkArchitecture
architecture)
807
DotNetFrameworkArchitecture
architecture)
832
if (leaf.StartsWith(prefix, StringComparison.Ordinal) && architecture ==
DotNetFrameworkArchitecture
.Current)
844
if (indexOfFramework64 != -1 && architecture ==
DotNetFrameworkArchitecture
.Bitness32)
857
else if (indexOfFramework64 == -1 && architecture ==
DotNetFrameworkArchitecture
.Bitness64)
980
internal static string GeneratePathToBuildToolsForToolsVersion(string toolsVersion,
DotNetFrameworkArchitecture
architecture)
1079
private static string GetPathToBuildToolsFromEnvironment(
DotNetFrameworkArchitecture
architecture)
1083
DotNetFrameworkArchitecture
.Bitness64 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory64,
1084
DotNetFrameworkArchitecture
.Bitness32 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory32,
1093
private static string GetPathToBuildToolsFromRegistry(string toolsVersion,
DotNetFrameworkArchitecture
architecture)
1101
case
DotNetFrameworkArchitecture
.Bitness32:
1104
case
DotNetFrameworkArchitecture
.Bitness64:
1107
case
DotNetFrameworkArchitecture
.Current:
1312
private readonly ConcurrentDictionary<
DotNetFrameworkArchitecture
, string> _pathsToDotNetFramework;
1361
this._pathsToDotNetFramework = new ConcurrentDictionary<
DotNetFrameworkArchitecture
, string>();
1403
public virtual string GetPathToDotNetFramework(
DotNetFrameworkArchitecture
architecture)
1713
return this.GetPathToDotNetFramework(
DotNetFrameworkArchitecture
.Current);