diff --git a/GitVersion.yml b/GitVersion.yml
index 94e320b..8b7d579 100644
--- a/GitVersion.yml
+++ b/GitVersion.yml
@@ -1,4 +1,4 @@
-next-version: 5.0.0
+next-version: 5.0.1
tag-prefix: '[vV]'
mode: ContinuousDeployment
branches:
diff --git a/License.md b/License.md
index df6574d..c1fcb07 100644
--- a/License.md
+++ b/License.md
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2025 Tech Ninja Labs
+Copyright (c) 2025 Code Shayk
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 75b58cd..9968c33 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,13 @@
-#
FileUtil.Core v5.0.0
+#
FileUtil.Core v5.0.1
[](https://badge.fury.io/nu/FixedWidth.FileParser) [](https://github.com/CodeShayk/FileUtil.Core/blob/master/LICENSE.md)
[](https://github.com/CodeShayk/FileUtil.Core/actions/workflows/Master-Build.yml)
[](https://github.com/CodeShayk/FileUtil.Core/releases/latest)
[](https://github.com/CodeShayk/FileUtil.Core/actions/workflows/Master-CodeQL.yml)
[](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
-
--------------
+[](https://github.com/dotnet/standard/blob/v2.0.0/docs/versions/netstandard2.1.md)
+[](https://github.com/dotnet/standard/blob/v2.0.0/docs/versions/netstandard2.0.md)
+[](https://dotnet.microsoft.com/en-us/download/dotnet-framework/net46)
+-----------
#### .Net Library to read from fixed width or delimiter separated file using strongly typed objects.
diff --git a/src/FileUtil/FileUtil.csproj b/src/FileUtil/FileUtil.csproj
index a507195..5ac591e 100644
--- a/src/FileUtil/FileUtil.csproj
+++ b/src/FileUtil/FileUtil.csproj
@@ -1,6 +1,6 @@
- net9.0
+ net462;netstandard2.0;netstandard2.1;net9.0
Public
https://github.com/CodeShayk/FileUtil.Core
csv tsv fixed-width delimiter-file delimiter file-parser file parser
@@ -15,7 +15,7 @@ Example: pipe delimited, csv, tsv, etc.
Fixed Width File Parser
https://github.com/CodeShayk/FileUtil.Core/wiki
https://1drv.ms/u/s!Aq_ncig7TU4551b5fzxOad-pDMfL
- 5.0.0
+ 5.0.1
FixedWidth.FileParser
© Copyright 2025 Code Shayk.
ninja-icon-16.png
@@ -47,6 +47,6 @@ Example: pipe delimited, csv, tsv, etc.
-
+
\ No newline at end of file
diff --git a/src/FileUtil/Provider/Impl/FileHelper.cs b/src/FileUtil/Provider/Impl/FileHelper.cs
index 5670f2b..9e26371 100644
--- a/src/FileUtil/Provider/Impl/FileHelper.cs
+++ b/src/FileUtil/Provider/Impl/FileHelper.cs
@@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.IO;
-using System.Reflection.PortableExecutable;
namespace FileUtil.Provider.Impl
{