We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8635f21 commit 8829b4dCopy full SHA for 8829b4d
1 file changed
src/UnityNuGet/RegistryCache.cs
@@ -554,7 +554,10 @@ RegistryEntry packageEntry
554
using var memStream = new MemoryStream();
555
556
using (var outStream = File.Create(unityPackageFilePath))
557
- using (var gzoStream = new GZipOutputStream(outStream))
+ using (var gzoStream = new GZipOutputStream(outStream)
558
+ {
559
+ ModifiedTime = DateTime.UnixEpoch
560
+ })
561
using (var tarArchive = new TarOutputStream(gzoStream, Encoding.UTF8))
562
{
563
// Select the framework version that is the closest or equal to the latest configured framework version
0 commit comments