Skip to content

Commit 27fb18a

Browse files
committed
fix build errors
1 parent b27ddb6 commit 27fb18a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/SimpleBase.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
</ItemGroup>
4747

4848
<ItemGroup>
49-
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
5049
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.1">
5150
<PrivateAssets>all</PrivateAssets>
5251
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

test/Base16/Base16Test.cs

-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ internal class Base16Test
1919
Base16.ModHex
2020
};
2121

22-
#pragma warning disable CA1825 // Avoid zero-length array allocations
2322
private static readonly object[][] testCases = new[]
2423
{ // LowerCase // UpperCase // ModHex
2524
new object[] { new byte[] { }, "", "", "" },
@@ -29,7 +28,6 @@ internal class Base16Test
2928
new object[] { new byte[] { 0xAB, 0xCD, 0xEF, 0xBA }, "abcdefba", "ABCDEFBA", "lnrtuvnl" },
3029
new object[] { new byte[] { 0xAB, 0xCD, 0xEF, 0xBA, 0xAB, 0xCD, 0xEF, 0xBA }, "abcdefbaabcdefba", "ABCDEFBAABCDEFBA", "lnrtuvnllnrtuvnl" },
3130
};
32-
#pragma warning restore CA1825 // Avoid zero-length array allocations
3331

3432
private static IEnumerable<TestCaseData> testData
3533
{

0 commit comments

Comments
 (0)