Skip to content

Commit 06d4da7

Browse files
committed
Drop netstandard2.0 support.
PBKDF2-SHA512 support was only added in .NET Framework 4.7.2 and .NET Standard 2.1. Signed-off-by: Bradley Grainger <[email protected]>
1 parent 8f60353 commit 06d4da7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- https://learn.microsoft.com/en-us/dotnet/fundamentals/package-validation/diagnostic-ids -->
2+
<!-- https://learn.microsoft.com/dotnet/fundamentals/package-validation/diagnostic-ids -->
33
<Suppressions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
44
<Suppression>
55
<DiagnosticId>PKV006</DiagnosticId>
66
<Target>.NETFramework,Version=v4.5</Target>
77
</Suppression>
8+
<Suppression>
9+
<DiagnosticId>PKV006</DiagnosticId>
10+
<Target>.NETStandard,Version=v2.0</Target>
11+
</Suppression>
812
</Suppressions>

0 commit comments

Comments
 (0)