6 instantiations of RestoreLockProperties
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
1080
restoreMetadata.RestoreLockProperties = new
RestoreLockProperties
(project.GetProperty("RestorePackagesWithLockFile"), project.GetProperty("NuGetLockFilePath"), project.IsPropertyTrue("RestoreLockedMode"));
NuGet.Commands (2)
RestoreCommand\Utility\MSBuildRestoreUtility.cs (1)
990
return new
RestoreLockProperties
(
RestoreCommand\Utility\PackageSpecFactory.cs (1)
345
restoreMetadata.RestoreLockProperties = new
RestoreLockProperties
(outerBuild.GetProperty("RestorePackagesWithLockFile"), outerBuild.GetProperty("NuGetLockFilePath"), outerBuild.IsPropertyTrue("RestoreLockedMode"));
NuGet.ProjectModel (3)
JsonPackageSpecReader.Utf8JsonStreamReader.cs (1)
909
restoreLockProperties = new
RestoreLockProperties
(restorePackagesWithLockFile, nuGetLockFilePath, restoreLockedMode);
ProjectRestoreMetadata.cs (1)
117
public RestoreLockProperties RestoreLockProperties { get; set; } = new
RestoreLockProperties
();
RestoreLockProperties.cs (1)
76
return new
RestoreLockProperties
(RestorePackagesWithLockFile, NuGetLockFilePath, RestoreLockedMode);
7 references to RestoreLockProperties
NuGet.Commands (1)
RestoreCommand\Utility\MSBuildRestoreUtility.cs (1)
988
private static
RestoreLockProperties
GetRestoreLockProperties(IMSBuildItem specItem)
NuGet.ProjectModel (6)
JsonPackageSpecReader.Utf8JsonStreamReader.cs (1)
767
RestoreLockProperties
restoreLockProperties = null;
ProjectRestoreMetadata.cs (1)
117
public
RestoreLockProperties
RestoreLockProperties { get; set; } = new RestoreLockProperties();
RestoreLockProperties.cs (4)
10
public class RestoreLockProperties : IEquatable<
RestoreLockProperties
>
54
return Equals(obj as
RestoreLockProperties
);
57
public bool Equals(
RestoreLockProperties
? other)
74
public
RestoreLockProperties
Clone()