Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static bool PersistFileIfChanged(TaskLoggingHelper log, byte[] data, stri

private static string ComputeHash(byte[] data)
{
#if NET6_0_OR_GREATER
#if NET
var hash = SHA256.HashData(data);
return Convert.ToBase64String(hash);
#else
Expand Down
Loading