diff --git a/Directory.Packages.props b/Directory.Packages.props
index c9141dd0..99cf5134 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -29,6 +29,7 @@
+
@@ -40,4 +41,4 @@
-
+
\ No newline at end of file
diff --git a/ScriptBee.Tests/FilePathAttribute.cs b/ScriptBee.Tests/FilePathAttribute.cs
deleted file mode 100644
index a83b37ee..00000000
--- a/ScriptBee.Tests/FilePathAttribute.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System.Collections.Generic;
-using System.IO;
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using Xunit.Sdk;
-
-namespace ScriptBee.Tests;
-
-public class FilePathAttribute : DataAttribute
-{
- private readonly string _filePath;
- private readonly string? _parameter;
-
- public FilePathAttribute(string filePath, string? parameter = null, [CallerFilePath] string testFilePath = "")
- {
- var testDataFolder =
- Path.GetRelativePath(Directory.GetCurrentDirectory(), Directory.GetParent(testFilePath)!.FullName)
- .Replace("..\\", "");
- _filePath = Path.Combine(Directory.GetCurrentDirectory(), testDataFolder, filePath);
- _parameter = parameter;
- }
-
- public override IEnumerable