3 writes to Manifests
dotnet (3)
_generated\86\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
79
Setter = static (obj, value) => ((global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents)obj).
Manifests
= value!,
Commands\Workload\Install\FileBasedInstaller.cs (2)
574
UpdateInstallState(sdkFeatureBand, contents => contents.
Manifests
= null);
579
UpdateInstallState(sdkFeatureBand, contents => contents.
Manifests
= manifestContents);
14 references to Manifests
dotnet (14)
_generated\86\InstallStateJsonSerializerContext.InstallStateContents.g.cs (2)
78
Getter = static obj => ((global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents)obj).
Manifests
,
132
global::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)
329
if (currentInstallState.
Manifests
== null && oldInstallState.
Manifests
!= null ||
330
currentInstallState.
Manifests
!= null && oldInstallState.
Manifests
== null ||
331
currentInstallState.
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
);