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 @@ -# ninja FileUtil.Core v5.0.0 +# ninja FileUtil.Core v5.0.1 [![NuGet version](https://badge.fury.io/nu/FixedWidth.FileParser.svg)](https://badge.fury.io/nu/FixedWidth.FileParser) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/CodeShayk/FileUtil.Core/blob/master/LICENSE.md) [![Master-Build](https://github.com/CodeShayk/FileUtil.Core/actions/workflows/Master-Build.yml/badge.svg)](https://github.com/CodeShayk/FileUtil.Core/actions/workflows/Master-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/CodeShayk/FileUtil.Core?logo=github&sort=semver)](https://github.com/CodeShayk/FileUtil.Core/releases/latest) [![Master-CodeQL](https://github.com/CodeShayk/FileUtil.Core/actions/workflows/Master-CodeQL.yml/badge.svg)](https://github.com/CodeShayk/FileUtil.Core/actions/workflows/Master-CodeQL.yml) [![.Net 9.0](https://img.shields.io/badge/.Net-9.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/9.0) - -------------- +[![.Net Standard 2.1](https://img.shields.io/badge/.NetStandard-2.1-blue)](https://github.com/dotnet/standard/blob/v2.0.0/docs/versions/netstandard2.1.md) +[![.Net Standard 2.0](https://img.shields.io/badge/.NetStandard-2.0-blue)](https://github.com/dotnet/standard/blob/v2.0.0/docs/versions/netstandard2.0.md) +[![.Net Framework 4.6.4](https://img.shields.io/badge/.Net-4.6.4-blue)](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 {