Skip to content

Commit bb92016

Browse files
authored
Release/v5.0.1 (#9)
1 parent ca9e236 commit bb92016

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 5.0.0
1+
next-version: 5.0.1
22
tag-prefix: '[vV]'
33
mode: ContinuousDeployment
44
branches:

License.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2025 Tech Ninja Labs
3+
Copyright (c) 2025 Code Shayk
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# <img src="https://github.com/CodeShayk/FileUtil.Core/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FileUtil.Core v5.0.0
1+
# <img src="https://github.com/CodeShayk/FileUtil.Core/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FileUtil.Core v5.0.1
22
[![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)
33
[![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)
44
[![GitHub Release](https://img.shields.io/github/v/release/CodeShayk/FileUtil.Core?logo=github&sort=semver)](https://github.com/CodeShayk/FileUtil.Core/releases/latest)
55
[![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)
66
[![.Net 9.0](https://img.shields.io/badge/.Net-9.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
7-
8-
-------------
7+
[![.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)
8+
[![.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)
9+
[![.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)
10+
-----------
911
#### .Net Library to read from fixed width or delimiter separated file using strongly typed objects.
1012

1113

src/FileUtil/FileUtil.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net9.0</TargetFrameworks>
44
<RepositoryType>Public</RepositoryType>
55
<RepositoryUrl>https://github.com/CodeShayk/FileUtil.Core</RepositoryUrl>
66
<PackageTags>csv tsv fixed-width delimiter-file delimiter file-parser file parser</PackageTags>
@@ -15,7 +15,7 @@ Example: pipe delimited, csv, tsv, etc.</Description>
1515
<Product>Fixed Width File Parser</Product>
1616
<PackageProjectUrl>https://github.com/CodeShayk/FileUtil.Core/wiki</PackageProjectUrl>
1717
<PackageIconUrl>https://1drv.ms/u/s!Aq_ncig7TU4551b5fzxOad-pDMfL</PackageIconUrl>
18-
<Version>5.0.0</Version>
18+
<Version>5.0.1</Version>
1919
<Title>FixedWidth.FileParser</Title>
2020
<Copyright>© Copyright 2025 Code Shayk.</Copyright>
2121
<PackageIcon>ninja-icon-16.png</PackageIcon>
@@ -47,6 +47,6 @@ Example: pipe delimited, csv, tsv, etc.</Description>
4747
</None>
4848
</ItemGroup>
4949
<ItemGroup>
50-
<PackageReference Include="Parsley.Net" Version="1.0.0" />
50+
<PackageReference Include="Parsley.Net" Version="1.0.1" />
5151
</ItemGroup>
5252
</Project>

src/FileUtil/Provider/Impl/FileHelper.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
22
using System.IO;
3-
using System.Reflection.PortableExecutable;
43

54
namespace FileUtil.Provider.Impl
65
{

0 commit comments

Comments
 (0)