Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/Common/NodeContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private static string GenerateId(string projectFileRelativePath, IReadOnlyDictio
}

#pragma warning disable CA5351 // Do Not Use Broken Cryptographic Algorithms. This is not used for crypto.
using MD5 hasher = MD5.Create();
using MD5 hasher = MD5.Create(); // CodeQL [SM02196] This is not used for crypto, but for just generating a small nickname.
#pragma warning restore CA5351 // Do Not Use Broken Cryptographic Algorithms

foreach (KeyValuePair<string, string> kvp in sortedProperties)
Expand Down
Loading