From bcddbeb84a77631931119d0a9174c759678b8181 Mon Sep 17 00:00:00 2001 From: avius Date: Sat, 21 Dec 2024 14:17:05 +0100 Subject: [PATCH] update version & added .NET 9 support --- source/ECF.AutoFac/.nuspec | 100 +++++++++-------- source/ECF.AutoFac/ECF.AutoFac.csproj | 9 +- source/ECF.HostedServices/.nuspec | 10 +- .../ECF.HostedServices.csproj | 2 +- .../ECF.Microsoft.DependencyInjection/.nuspec | 106 ++++++++++-------- .../ECF.Microsoft.DependencyInjection.csproj | 9 +- source/ECF.Templates/ECFTemplates.csproj | 2 +- .../templates/ECF.Autofac/NewProject.csproj | 2 +- .../templates/ECF/NewProject.csproj | 2 +- source/ECF/.nuspec | 16 ++- source/ECF/ECF.csproj | 8 +- 11 files changed, 154 insertions(+), 112 deletions(-) diff --git a/source/ECF.AutoFac/.nuspec b/source/ECF.AutoFac/.nuspec index 11a54bc..4e0e144 100644 --- a/source/ECF.AutoFac/.nuspec +++ b/source/ECF.AutoFac/.nuspec @@ -1,55 +1,65 @@ - - EasyConsoleFramework.AutoFac - 1.0.5 - Easy Console Framewok - Framework for building command based IoC console application. This package is using AutoFac library for IoC. - Aviuz - console IoC ecf autofac - - false - MIT - Copyright (c) Aviuz 2023 - - en-US - https://github.com/Aviuz/ECF - - docs\README.md - - - - - + + EasyConsoleFramework.AutoFac + 1.0.6 + Easy Console Framewok - Framework for building command based IoC console application. This package is using AutoFac library for IoC. + Aviuz + console IoC ecf autofac + + false + MIT + Copyright (c) Aviuz 2023 + + en-US + https://github.com/Aviuz/ECF + + docs\README.md + + + + + - + - - + + - - + + - + + + + + + + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/ECF.AutoFac/ECF.AutoFac.csproj b/source/ECF.AutoFac/ECF.AutoFac.csproj index fa3316e..eb66cfe 100644 --- a/source/ECF.AutoFac/ECF.AutoFac.csproj +++ b/source/ECF.AutoFac/ECF.AutoFac.csproj @@ -1,10 +1,10 @@  - net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0;net9.0 enable enable - 1.0.5 + 1.0.6 @@ -22,6 +22,11 @@ + + + + + diff --git a/source/ECF.HostedServices/.nuspec b/source/ECF.HostedServices/.nuspec index 1147ec7..867075b 100644 --- a/source/ECF.HostedServices/.nuspec +++ b/source/ECF.HostedServices/.nuspec @@ -2,7 +2,7 @@ EasyConsoleFramework.HostedServices - 1.0.5 + 1.0.6 Hosted Services plugin for Easy Console Framewok (ECF). Aviuz console IoC ecf @@ -18,18 +18,18 @@ - + - + - - + + diff --git a/source/ECF.HostedServices/ECF.HostedServices.csproj b/source/ECF.HostedServices/ECF.HostedServices.csproj index afd0437..fd5aa14 100644 --- a/source/ECF.HostedServices/ECF.HostedServices.csproj +++ b/source/ECF.HostedServices/ECF.HostedServices.csproj @@ -4,7 +4,7 @@ net6.0;net7.0;net8.0 enable enable - 1.0.5 + 1.0.6 ECF.HostedServices ECF.HostedServices diff --git a/source/ECF.Microsoft.DependencyInjection/.nuspec b/source/ECF.Microsoft.DependencyInjection/.nuspec index 9abc0f0..3cd23dc 100644 --- a/source/ECF.Microsoft.DependencyInjection/.nuspec +++ b/source/ECF.Microsoft.DependencyInjection/.nuspec @@ -1,55 +1,65 @@ - - ECF - 1.0.5 - Easy Console Framewok - Framework for building command based IoC console application. This package is using Microsoft.Extensions.DependencyInjection library for IoC - Aviuz - console IoC ecf DependencyInjection - - false - MIT - Copyright (c) Aviuz 2023 - - en-US - https://github.com/Aviuz/ECF - - docs\README.md - - - - - - - - - - + + ECF + 1.0.6 + Easy Console Framewok - Framework for building command based IoC console application. This package is using Microsoft.Extensions.DependencyInjection library for IoC + Aviuz + console IoC ecf DependencyInjection + + false + MIT + Copyright (c) Aviuz 2023 + + en-US + https://github.com/Aviuz/ECF + + docs\README.md + + + + + + + + + + - - + + - - - + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/ECF.Microsoft.DependencyInjection/ECF.Microsoft.DependencyInjection.csproj b/source/ECF.Microsoft.DependencyInjection/ECF.Microsoft.DependencyInjection.csproj index 98ced8d..1f4bacf 100644 --- a/source/ECF.Microsoft.DependencyInjection/ECF.Microsoft.DependencyInjection.csproj +++ b/source/ECF.Microsoft.DependencyInjection/ECF.Microsoft.DependencyInjection.csproj @@ -1,10 +1,10 @@  - net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0;net9.0 enable enable - 1.0.5 + 1.0.6 ECF ECF @@ -23,6 +23,11 @@ + + + + + diff --git a/source/ECF.Templates/ECFTemplates.csproj b/source/ECF.Templates/ECFTemplates.csproj index a187805..221cf24 100644 --- a/source/ECF.Templates/ECFTemplates.csproj +++ b/source/ECF.Templates/ECFTemplates.csproj @@ -2,7 +2,7 @@ Template - 1.0.5 + 1.0.6 ECFTemplates ECF Templates Aviuz diff --git a/source/ECF.Templates/templates/ECF.Autofac/NewProject.csproj b/source/ECF.Templates/templates/ECF.Autofac/NewProject.csproj index 658168c..1912343 100644 --- a/source/ECF.Templates/templates/ECF.Autofac/NewProject.csproj +++ b/source/ECF.Templates/templates/ECF.Autofac/NewProject.csproj @@ -8,7 +8,7 @@ - + diff --git a/source/ECF.Templates/templates/ECF/NewProject.csproj b/source/ECF.Templates/templates/ECF/NewProject.csproj index cee9d86..7cc11fd 100644 --- a/source/ECF.Templates/templates/ECF/NewProject.csproj +++ b/source/ECF.Templates/templates/ECF/NewProject.csproj @@ -8,7 +8,7 @@ - + diff --git a/source/ECF/.nuspec b/source/ECF/.nuspec index 64e96b5..c68bef5 100644 --- a/source/ECF/.nuspec +++ b/source/ECF/.nuspec @@ -2,7 +2,7 @@ EasyConsoleFramework.Base - 1.0.5 + 1.0.6 Easy Console Framewok - Framework for building command based IoC console application. This package is base library without any IoC dependency. Aviuz console IoC ecf @@ -25,9 +25,13 @@ - - - + + + + + + + @@ -45,5 +49,9 @@ + + + + \ No newline at end of file diff --git a/source/ECF/ECF.csproj b/source/ECF/ECF.csproj index f53dad3..e5d9126 100644 --- a/source/ECF/ECF.csproj +++ b/source/ECF/ECF.csproj @@ -1,10 +1,10 @@  - net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0;net9.0 enable enable - 1.0.5 + 1.0.6 ECF ECF.Base @@ -21,4 +21,8 @@ + + + +