Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ssg committed Dec 12, 2020
1 parent b27ddb6 commit 27fb18a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/SimpleBase.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 0 additions & 2 deletions test/Base16/Base16Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ internal class Base16Test
Base16.ModHex
};

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

private static IEnumerable<TestCaseData> testData
{
Expand Down

0 comments on commit 27fb18a

Please sign in to comment.