27 references to DotNetFrameworkArchitecture
Microsoft.Build (27)
Definition\ToolsetReader.cs (1)
173
FrameworkLocationHelper.GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
.Current);
FrameworkLocationHelper.cs (26)
444
: GetPathToDotNetFrameworkV11(
DotNetFrameworkArchitecture
.Current);
454
: GetPathToDotNetFrameworkV20(
DotNetFrameworkArchitecture
.Current);
464
: GetPathToDotNetFrameworkV30(
DotNetFrameworkArchitecture
.Current);
474
: GetPathToDotNetFrameworkV35(
DotNetFrameworkArchitecture
.Current);
484
: GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
.Current);
494
: GetPathToDotNetFrameworkV45(
DotNetFrameworkArchitecture
.Current);
717
internal static string GetPathToDotNetFrameworkV11(
DotNetFrameworkArchitecture
architecture)
722
internal static string GetPathToDotNetFrameworkV20(
DotNetFrameworkArchitecture
architecture)
727
internal static string GetPathToDotNetFrameworkV30(
DotNetFrameworkArchitecture
architecture)
732
internal static string GetPathToDotNetFrameworkV35(
DotNetFrameworkArchitecture
architecture)
737
internal static string GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
architecture)
742
internal static string GetPathToDotNetFrameworkV45(
DotNetFrameworkArchitecture
architecture)
749
return GetPathToDotNetFramework(version,
DotNetFrameworkArchitecture
.Current);
752
internal static string GetPathToDotNetFramework(Version version,
DotNetFrameworkArchitecture
architecture)
805
DotNetFrameworkArchitecture
architecture)
830
if (leaf.StartsWith(prefix, StringComparison.Ordinal) && architecture ==
DotNetFrameworkArchitecture
.Current)
842
if (indexOfFramework64 != -1 && architecture ==
DotNetFrameworkArchitecture
.Bitness32)
855
else if (indexOfFramework64 == -1 && architecture ==
DotNetFrameworkArchitecture
.Bitness64)
978
internal static string GeneratePathToBuildToolsForToolsVersion(string toolsVersion,
DotNetFrameworkArchitecture
architecture)
1077
private static string GetPathToBuildToolsFromEnvironment(
DotNetFrameworkArchitecture
architecture)
1081
DotNetFrameworkArchitecture
.Bitness64 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory64,
1082
DotNetFrameworkArchitecture
.Bitness32 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory32,
1310
private readonly ConcurrentDictionary<
DotNetFrameworkArchitecture
, string> _pathsToDotNetFramework;
1359
this._pathsToDotNetFramework = new ConcurrentDictionary<
DotNetFrameworkArchitecture
, string>();
1401
public virtual string GetPathToDotNetFramework(
DotNetFrameworkArchitecture
architecture)
1711
return this.GetPathToDotNetFramework(
DotNetFrameworkArchitecture
.Current);