Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 5.0.0
next-version: 5.0.1
tag-prefix: '[vV]'
mode: ContinuousDeployment
branches:
Expand Down
2 changes: 1 addition & 1 deletion License.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# <img src="https://github.com/CodeShayk/FileUtil.Core/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FileUtil.Core v5.0.0
# <img src="https://github.com/CodeShayk/FileUtil.Core/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> 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.


Expand Down
6 changes: 3 additions & 3 deletions src/FileUtil/FileUtil.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net9.0</TargetFrameworks>
<RepositoryType>Public</RepositoryType>
<RepositoryUrl>https://github.com/CodeShayk/FileUtil.Core</RepositoryUrl>
<PackageTags>csv tsv fixed-width delimiter-file delimiter file-parser file parser</PackageTags>
Expand All @@ -15,7 +15,7 @@ Example: pipe delimited, csv, tsv, etc.</Description>
<Product>Fixed Width File Parser</Product>
<PackageProjectUrl>https://github.com/CodeShayk/FileUtil.Core/wiki</PackageProjectUrl>
<PackageIconUrl>https://1drv.ms/u/s!Aq_ncig7TU4551b5fzxOad-pDMfL</PackageIconUrl>
<Version>5.0.0</Version>
<Version>5.0.1</Version>
<Title>FixedWidth.FileParser</Title>
<Copyright>© Copyright 2025 Code Shayk.</Copyright>
<PackageIcon>ninja-icon-16.png</PackageIcon>
Expand Down Expand Up @@ -47,6 +47,6 @@ Example: pipe delimited, csv, tsv, etc.</Description>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Parsley.Net" Version="1.0.0" />
<PackageReference Include="Parsley.Net" Version="1.0.1" />
</ItemGroup>
</Project>
1 change: 0 additions & 1 deletion src/FileUtil/Provider/Impl/FileHelper.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.IO;
using System.Reflection.PortableExecutable;

namespace FileUtil.Provider.Impl
{
Expand Down
Loading