2 instantiations of InstallStateContents
Microsoft.NET.Build.Tasks (2)
InstallStateContents.cs (2)
35return JsonSerializer.Deserialize<InstallStateContents>(contents, s_options) ?? new InstallStateContents(); 40return File.Exists(path) ? FromString(File.ReadAllText(path)) : new InstallStateContents();
7 references to InstallStateContents
Microsoft.NET.Build.Tasks (7)
InstallStateContents.cs (3)
33public static InstallStateContents FromString(string contents) 35return JsonSerializer.Deserialize<InstallStateContents>(contents, s_options) ?? new InstallStateContents(); 38public static InstallStateContents FromPath(string path)
SdkDirectoryWorkloadManifestProvider.cs (4)
187var installState = InstallStateContents.FromPath(_installStateFilePath); 271var installState = InstallStateContents.FromPath(installStateFilePath)!;