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