6 writes to LastWriteTime
Microsoft.Build (1)
Logging\BinaryLogger\ProjectImportsCollector.cs (1)
245archiveEntry.LastWriteTime = entryCreationStamp.Value;
NuGet.Packaging (4)
PackageCreation\Authoring\PackageBuilder.cs (4)
926entry.LastWriteTime = _deterministicTimestamp; 938entry.LastWriteTime = ZipFormatMinDate; 943entry.LastWriteTime = ZipFormatMaxDate; 947entry.LastWriteTime = timeOffset.UtcDateTime;
System.IO.Compression.ZipFile (1)
System\IO\Compression\ZipFileExtensions.ZipArchive.Create.cs (1)
121entry.LastWriteTime = lastWrite;
9 references to LastWriteTime
Microsoft.Build (2)
Logging\BinaryLogger\BuildEventArgsReader.cs (2)
429entryCreationStamp: entry.LastWriteTime); 437entryCreationStamp: entry.LastWriteTime);
Microsoft.Build.Tasks.Core (2)
Unzip.cs (2)
287destinationPath.LastWriteTimeUtc = zipArchiveEntry.LastWriteTime.UtcDateTime; 328&& zipArchiveEntry.LastWriteTime == fileInfo.LastWriteTimeUtc
NuGet.Packaging (4)
PackageExtraction\ZipArchiveExtensions.cs (4)
104entry.LastWriteTime.DateTime != DateTime.MinValue && // Ignore invalid times 105entry.LastWriteTime.UtcDateTime <= DateTime.UtcNow) // Ignore future times 109DateTime dateTime = entry.LastWriteTime.Add(entry.LastWriteTime.Offset).UtcDateTime;
System.IO.Compression.ZipFile (1)
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (1)
154ArchivingUtils.AttemptSetLastWriteTime(destinationFileName, source.LastWriteTime);