8 references to InstallType
Microsoft.NET.Sdk.WorkloadManifestReader (8)
WorkloadInstallType.cs (8)
24/// Determines the <see cref="InstallType"/> associated with a specific SDK version. 27/// <returns>The <see cref="InstallType"/> associated with the SDK.</returns> 28public static InstallType GetWorkloadInstallType(SdkFeatureBand sdkFeatureBand, string? dotnetDir) => 31? InstallType.Msi : InstallType.FileBased; 35var installType = GetWorkloadInstallType(sdkFeatureBand, dotnetDir); 38if (dotnetDir is not null && installType == InstallType.FileBased) 42else if (installType == InstallType.Msi)