Skip to content

Commit 2d5116c

Browse files
authored
Merge pull request #28222 from dotnet/increase-assetsfile-formatversion-17-0-1xx
Increase cache assets file format version to 11 in 7.0.1xx
2 parents da2c864 + bc11886 commit 2d5116c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tasks/Microsoft.NET.Build.Tasks/ResolvePackageAssets.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public sealed class ResolvePackageAssets : TaskBase
304304
////////////////////////////////////////////////////////////////////////////////////////////////////
305305

306306
private const int CacheFormatSignature = ('P' << 0) | ('K' << 8) | ('G' << 16) | ('A' << 24);
307-
private const int CacheFormatVersion = 10;
307+
private const int CacheFormatVersion = 11;
308308
private static readonly Encoding TextEncoding = Encoding.UTF8;
309309
private const int SettingsHashLength = 256 / 8;
310310
private HashAlgorithm CreateSettingsHash() => SHA256.Create();

0 commit comments

Comments
 (0)