Remove unused nuget JetBrains.Annotations

This commit is contained in:
2024-11-16 22:19:05 +01:00
parent 13d9218944
commit 711d20bf72
5 changed files with 1 additions and 6 deletions

View File

@@ -1,7 +1,6 @@
namespace CvsLib.Tests;
[TestSubject(typeof(ByteArraySearcher))]
public class ByteArraySearcherTests
{
[Fact]
@@ -9,7 +8,7 @@ public class ByteArraySearcherTests
{
// --- Arrange
byte[] haystack = [1, 2, 3, 4, 5,];
byte[] needle = Array.Empty<byte>();
byte[] needle = [];
ByteArraySearcher searcher = new(needle);
// --- Act

View File

@@ -2,7 +2,6 @@ using System.Text;
namespace CvsLib.Tests;
[TestSubject(typeof(CsvFieldIndexer))]
public class CsvFieldIndexerTests
{
#region GenerateIndex

View File

@@ -10,7 +10,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">

View File

@@ -1,7 +1,6 @@
namespace CvsLib.Tests;
[TestSubject(typeof(CsvParser))]
public class CsvParserTest
{
#region Parse

View File

@@ -1,3 +1,2 @@
global using Xunit;
global using JetBrains.Annotations;
global using CsvLib;