27 references to DotNetFrameworkArchitecture
Microsoft.Build (27)
Definition\ToolsetReader.cs (1)
179
FrameworkLocationHelper.GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
.Current);
FrameworkLocationHelper.cs (26)
411
: GetPathToDotNetFrameworkV11(
DotNetFrameworkArchitecture
.Current);
421
: GetPathToDotNetFrameworkV20(
DotNetFrameworkArchitecture
.Current);
431
: GetPathToDotNetFrameworkV30(
DotNetFrameworkArchitecture
.Current);
441
: GetPathToDotNetFrameworkV35(
DotNetFrameworkArchitecture
.Current);
451
: GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
.Current);
461
: GetPathToDotNetFrameworkV45(
DotNetFrameworkArchitecture
.Current);
684
internal static string GetPathToDotNetFrameworkV11(
DotNetFrameworkArchitecture
architecture)
689
internal static string GetPathToDotNetFrameworkV20(
DotNetFrameworkArchitecture
architecture)
694
internal static string GetPathToDotNetFrameworkV30(
DotNetFrameworkArchitecture
architecture)
699
internal static string GetPathToDotNetFrameworkV35(
DotNetFrameworkArchitecture
architecture)
704
internal static string GetPathToDotNetFrameworkV40(
DotNetFrameworkArchitecture
architecture)
709
internal static string GetPathToDotNetFrameworkV45(
DotNetFrameworkArchitecture
architecture)
716
return GetPathToDotNetFramework(version,
DotNetFrameworkArchitecture
.Current);
719
internal static string GetPathToDotNetFramework(Version version,
DotNetFrameworkArchitecture
architecture)
772
DotNetFrameworkArchitecture
architecture)
798
if (leaf.StartsWith(prefix, StringComparison.Ordinal) && architecture ==
DotNetFrameworkArchitecture
.Current)
810
if (indexOfFramework64 != -1 && architecture ==
DotNetFrameworkArchitecture
.Bitness32)
819
else if (indexOfFramework64 == -1 && architecture ==
DotNetFrameworkArchitecture
.Bitness64)
942
internal static string GeneratePathToBuildToolsForToolsVersion(string toolsVersion,
DotNetFrameworkArchitecture
architecture)
1041
private static string GetPathToBuildToolsFromEnvironment(
DotNetFrameworkArchitecture
architecture)
1045
DotNetFrameworkArchitecture
.Bitness64 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory64,
1046
DotNetFrameworkArchitecture
.Bitness32 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory32,
1289
private readonly ConcurrentDictionary<
DotNetFrameworkArchitecture
, string> _pathsToDotNetFramework;
1326
this._pathsToDotNetFramework = new ConcurrentDictionary<
DotNetFrameworkArchitecture
, string>();
1362
public virtual string GetPathToDotNetFramework(
DotNetFrameworkArchitecture
architecture)
1671
return this.GetPathToDotNetFramework(
DotNetFrameworkArchitecture
.Current);