3 writes to Manifests
dotnet (3)
_generated\86\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
79Setter = static (obj, value) => ((global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents)obj).Manifests = value!,
Commands\Workload\Install\FileBasedInstaller.cs (2)
574UpdateInstallState(sdkFeatureBand, contents => contents.Manifests = null); 579UpdateInstallState(sdkFeatureBand, contents => contents.Manifests = manifestContents);
14 references to Manifests
dotnet (14)
_generated\86\InstallStateJsonSerializerContext.InstallStateContents.g.cs (2)
78Getter = static obj => ((global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents)obj).Manifests, 132global::System.Collections.Generic.Dictionary<string, string> __value_Manifests = ((global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents)value).Manifests;
Commands\Workload\Install\WorkloadInstallCommand.cs (1)
245(installState.Manifests != null || installState.WorkloadVersion != null))
Commands\Workload\InstallingWorkloadCommand.cs (11)
329if (currentInstallState.Manifests == null && oldInstallState.Manifests != null || 330currentInstallState.Manifests != null && oldInstallState.Manifests == null || 331currentInstallState.Manifests != null && oldInstallState.Manifests != null && 332(currentInstallState.Manifests.Count != oldInstallState.Manifests.Count || 333!currentInstallState.Manifests.All(m => oldInstallState.Manifests.TryGetValue(m.Key, out var val) && val.Equals(m.Value)))) 335_workloadInstaller.SaveInstallStateManifestVersions(_sdkFeatureBand, oldInstallState.Manifests);