22 references to HostArchitecture
dotnet (22)
Commands\Workload\Install\MsiInstallerBase.cs (3)
118
Environment.SpecialFolder programFiles = string.Equals(
HostArchitecture
, "x86") && Environment.Is64BitOperatingSystem
127
using RegistryKey hostKey = hklm.OpenSubKey($@"SOFTWARE\dotnet\Setup\InstalledVersions\{
HostArchitecture
}");
475
using RegistryKey installedSdkVersionsKey = hklm32.OpenSubKey(@$"SOFTWARE\dotnet\Setup\InstalledVersions\{
HostArchitecture
}\sdk");
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (9)
55
_dependent = $"{DependentPrefix},{sdkFeatureBand},{
HostArchitecture
}";
64
Log?.LogMessage($"{nameof(
HostArchitecture
)}: {
HostArchitecture
}");
84
string dependent = $"{DependentPrefix},{sdkFeatureBand},{
HostArchitecture
}";
388
.Where(d => d.EndsWith($",{
HostArchitecture
}"));
432
string msiNuGetPackageId = $"Microsoft.NET.Workloads.{record.WorkloadSetFeatureBand}.Msi.{
HostArchitecture
}";
458
string msiNuGetPackageId = $"{record.ManifestId}.Manifest-{record.ManifestFeatureBand}.Msi.{
HostArchitecture
}";
490
string id = $"{record.MsiId}.Msi.{
HostArchitecture
}";
918
return $"{packInfo.ResolvedPackageId}.Msi.{
HostArchitecture
}";
Commands\Workload\Install\NetSdkMsiInstallerClient.InstallRecords.cs (8)
22
Log?.LogMessage($"Detecting installed workload sets for {
HostArchitecture
}.");
26
using RegistryKey installedManifestsKey = Registry.LocalMachine.OpenSubKey(@$"SOFTWARE\Microsoft\dotnet\InstalledWorkloadSets\{
HostArchitecture
}");
84
Log?.LogMessage($"Detecting installed workload manifests for {
HostArchitecture
}.");
89
using RegistryKey installedManifestsKey = Registry.LocalMachine.OpenSubKey(@$"SOFTWARE\Microsoft\dotnet\InstalledManifests\{
HostArchitecture
}");
170
string uuidName = $"{packageIdentity};{
HostArchitecture
}";
304
Log?.LogMessage($"Detecting installed workload packs for {
HostArchitecture
}.");
306
using RegistryKey installedPacksKey = Registry.LocalMachine.OpenSubKey(@$"SOFTWARE\Microsoft\dotnet\InstalledPacks\{
HostArchitecture
}");
345
using RegistryKey installedPackGroupsKey = Registry.LocalMachine.OpenSubKey(@$"SOFTWARE\Microsoft\dotnet\InstalledPackGroups\{
HostArchitecture
}");
Commands\Workload\Install\NetSdkMsiInstallerClient.PackGroup.cs (1)
93
msisToInstall.Add(new WorkloadDownload(group.GroupPackageId, $"{group.GroupPackageId}.Msi.{
HostArchitecture
}", group.GroupPackageVersion));
Commands\Workload\Install\WorkloadInstallRecords\RegistryWorkloadInstallationRecordRepository.cs (1)
25
internal readonly string BasePath = @$"SOFTWARE\Microsoft\dotnet\InstalledWorkloads\Standalone\{
HostArchitecture
}";