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

View File

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

View File

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

View File

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

View File

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