Skip to content

Commit 02a878c

Browse files
authored
Release v5.1.0
* v5.1.0 - .NET 10 upgrade
1 parent 9130cc2 commit 02a878c

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/CI-Package-Release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Step-04 Install .NET
5353
uses: actions/setup-dotnet@v3
5454
with:
55-
dotnet-version: 9.0.x
55+
dotnet-version: 10.0.x
5656

5757
- name: Step-05 Restore dependencies
5858
run: dotnet restore
@@ -101,7 +101,7 @@ jobs:
101101
- name: Step-04 Install .NET
102102
uses: actions/setup-dotnet@v3
103103
with:
104-
dotnet-version: 9.0.x
104+
dotnet-version: 10.0.x
105105

106106
- name: Step-05 Restore dependencies
107107
run: dotnet restore

.github/workflows/Master-Build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v3
2020
with:
21-
dotnet-version: 9.0.x
21+
dotnet-version: 10.0.x
2222
- name: Restore dependencies
2323
run: dotnet restore
2424
- name: Build

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.1
1+
next-version: 5.1.0
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 Code Shayk
3+
Copyright (c) 2026 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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
1+
# <img src="https://github.com/CodeShayk/FileUtil.Core/blob/master/images/file-parser.jpg" alt="parser" style="width:30px;"/> FileUtil.Core v5.1.0
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)
6+
[![.Net 10.0](https://img.shields.io/badge/.Net-10.0-green)](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
67
[![.Net 9.0](https://img.shields.io/badge/.Net-9.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
78
[![.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)
89
[![.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.2-blue)](https://dotnet.microsoft.com/en-us/download/dotnet-framework/net46)
1010
-----------
1111
#### .Net Library to read from fixed width or delimiter separated file using strongly typed objects.
1212

images/file-parser.jpg

5.55 KB
Loading

ms-icon-310x310.png

-63.5 KB
Binary file not shown.

src/FileUtil/FileUtil.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net9.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;netstandard2.1;net9.0;net10.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,16 +15,16 @@ 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.1</Version>
18+
<Version>5.1.0</Version>
1919
<Title>FixedWidth.FileParser</Title>
20-
<Copyright>© Copyright 2025 Code Shayk.</Copyright>
21-
<PackageIcon>ninja-icon-16.png</PackageIcon>
20+
<Copyright>© Copyright 2026 Code Shayk.</Copyright>
21+
<PackageIcon>file-parser.jpg</PackageIcon>
2222
<PackageReadmeFile>README.md</PackageReadmeFile>
2323
<PackageLicenseFile>License.md</PackageLicenseFile>
2424
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2525
<IncludeSymbols>True</IncludeSymbols>
2626
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
27-
<PackageReleaseNotes>- Use Parsley.Net for parsing of files.</PackageReleaseNotes>
27+
<PackageReleaseNotes>v5.1.0 - Targets .net 10 </PackageReleaseNotes>
2828
</PropertyGroup>
2929
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
3030
<Optimize>True</Optimize>
@@ -37,7 +37,7 @@ Example: pipe delimited, csv, tsv, etc.</Description>
3737
<Pack>True</Pack>
3838
<PackagePath>\</PackagePath>
3939
</None>
40-
<None Include="..\..\ninja-icon-16.png">
40+
<None Include="..\..\images\file-parser.jpg">
4141
<Pack>True</Pack>
4242
<PackagePath>\</PackagePath>
4343
</None>
@@ -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.1" />
50+
<PackageReference Include="Parsley.Net" Version="2.1.0" />
5151
</ItemGroup>
5252
</Project>

test/FileUtil.Tests/FileUtil.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)