Skip to content

Commit

Permalink
Merge pull request #33 from fmazzant/m-net80
Browse files Browse the repository at this point in the history
Target net8
  • Loading branch information
fmazzant authored Mar 1, 2024
2 parents 841dc27 + 092c1d6 commit a171096
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.6.0.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: .NET 7.0
name: .NET 8.0

on:
push:
Expand All @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore src/TinyCsv/TinyCsv.csproj
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore src/TinyCsv/TinyCsv.csproj
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget_aspnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore src/TinyCsv.AspNetCore/TinyCsv.AspNetCore.csproj
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget_ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore src/TinyCsv.Extensions/TinyCsv.Extensions.csproj
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,7 @@
/benchmark/CsvSampleConsoleBenchmarkApp/bin/Release/net7.0
/benchmark/CsvSampleConsoleBenchmarkApp/obj
/benchmark/CsvSampleConsoleBenchmarkApp/bin/Debug/net7.0
/benchmark/CsvSampleConsoleBenchmarkApp/bin/Release/net8.0
/samples/CsvSampleConsoleApp/bin/Release/net8.0
/samples/CsvSampleConsoleAttributeApp/bin/Release/net8.0
/samples/CsvSampleMinimalWebApiApp/bin/Release/net8.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.7" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="Mafe.TinyCsv" Version="1.5.2" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion benchmark/CsvSampleConsoleBenchmarkApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public Config()
AddJob(BaseJob.WithNuGet("Mafe.TinyCsv", "1.5.2"));
AddJob(BaseJob.WithNuGet("Mafe.TinyCsv", "1.6.1"));
AddJob(BaseJob.WithNuGet("Mafe.TinyCsv", "2.0.0"));
AddJob(BaseJob.WithNuGet("Mafe.TinyCsv", "2.1.0-rc1"));
AddJob(BaseJob.WithNuGet("Mafe.TinyCsv", "2.1.0"));
}
}

Expand Down
2 changes: 1 addition & 1 deletion samples/CsvSampleConsoleApp/CsvSampleConsoleApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/TinyCsv.AspNetCore/TinyCsv.AspNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0;</TargetFrameworks>
<LangVersion>preview</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<Description>TinyCsv AspNetCore is a .NET library utilities to read and write CSV data in an easy way on AspNetCore project.</Description>
Expand All @@ -14,14 +14,14 @@
<AssemblyName>Mafe.$(MSBuildProjectName)</AssemblyName>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Product>TinyCsv.AspNetCore</Product>
<Version>2.0.1</Version>
<Version>2.2.0-rc1</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Server.IIS" Version="2.2.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.Encodings.Web" Version="7.0.0" />
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/TinyCsv.Extensions/TinyCsv.Extensions.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;net8.0;netstandard2.0;netstandard2.1;</TargetFrameworks>
<LangVersion>preview</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<Description>TinyCsv Extensions is a .NET library utilities to read and write CSV data in an easy way.</Description>
Expand All @@ -21,7 +21,7 @@
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Server.IIS" Version="2.2.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.Encodings.Web" Version="7.0.0" />
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/TinyCsv/TinyCsv.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;netstandard2.0;netstandard2.1;net452;net462;net472;net48</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;net8.0;netstandard2.0;netstandard2.1;net452;net462;net472;net48</TargetFrameworks>
<LangVersion>preview</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -16,7 +16,7 @@
<AssemblyName>Mafe.$(MSBuildProjectName)</AssemblyName>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Product>TinyCsv</Product>
<Version>2.1.0</Version>
<Version>2.2.0-rc1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit a171096

Please sign in to comment.