33 references to DotNetFrameworkArchitecture
Microsoft.Build (33)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
323if (FrameworkLocationHelper.GetPathToDotNetFrameworkV35(DotNetFrameworkArchitecture.Current) == null)
Definition\ToolsetReader.cs (1)
179FrameworkLocationHelper.GetPathToDotNetFrameworkV40(DotNetFrameworkArchitecture.Current);
FrameworkLocationHelper.cs (30)
411: GetPathToDotNetFrameworkV11(DotNetFrameworkArchitecture.Current); 421: GetPathToDotNetFrameworkV20(DotNetFrameworkArchitecture.Current); 431: GetPathToDotNetFrameworkV30(DotNetFrameworkArchitecture.Current); 441: GetPathToDotNetFrameworkV35(DotNetFrameworkArchitecture.Current); 451: GetPathToDotNetFrameworkV40(DotNetFrameworkArchitecture.Current); 461: GetPathToDotNetFrameworkV45(DotNetFrameworkArchitecture.Current); 684internal static string GetPathToDotNetFrameworkV11(DotNetFrameworkArchitecture architecture) 689internal static string GetPathToDotNetFrameworkV20(DotNetFrameworkArchitecture architecture) 694internal static string GetPathToDotNetFrameworkV30(DotNetFrameworkArchitecture architecture) 699internal static string GetPathToDotNetFrameworkV35(DotNetFrameworkArchitecture architecture) 704internal static string GetPathToDotNetFrameworkV40(DotNetFrameworkArchitecture architecture) 709internal static string GetPathToDotNetFrameworkV45(DotNetFrameworkArchitecture architecture) 716return GetPathToDotNetFramework(version, DotNetFrameworkArchitecture.Current); 719internal static string GetPathToDotNetFramework(Version version, DotNetFrameworkArchitecture architecture) 772DotNetFrameworkArchitecture architecture) 797if (leaf.StartsWith(prefix, StringComparison.Ordinal) && architecture == DotNetFrameworkArchitecture.Current) 809if (indexOfFramework64 != -1 && architecture == DotNetFrameworkArchitecture.Bitness32) 822else if (indexOfFramework64 == -1 && architecture == DotNetFrameworkArchitecture.Bitness64) 945internal static string GeneratePathToBuildToolsForToolsVersion(string toolsVersion, DotNetFrameworkArchitecture architecture) 1044private static string GetPathToBuildToolsFromEnvironment(DotNetFrameworkArchitecture architecture) 1048DotNetFrameworkArchitecture.Bitness64 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory64, 1049DotNetFrameworkArchitecture.Bitness32 => BuildEnvironmentHelper.Instance.MSBuildToolsDirectory32, 1058private static string GetPathToBuildToolsFromRegistry(string toolsVersion, DotNetFrameworkArchitecture architecture) 1066case DotNetFrameworkArchitecture.Bitness32: 1069case DotNetFrameworkArchitecture.Bitness64: 1072case DotNetFrameworkArchitecture.Current: 1292private readonly ConcurrentDictionary<DotNetFrameworkArchitecture, string> _pathsToDotNetFramework; 1329this._pathsToDotNetFramework = new ConcurrentDictionary<DotNetFrameworkArchitecture, string>(); 1365public virtual string GetPathToDotNetFramework(DotNetFrameworkArchitecture architecture) 1675return this.GetPathToDotNetFramework(DotNetFrameworkArchitecture.Current);
InprocTrackingNativeMethods.cs (1)
207string buildToolsPath = FrameworkLocationHelper.GeneratePathToBuildToolsForToolsVersion(MSBuildConstants.CurrentToolsVersion, DotNetFrameworkArchitecture.Current);