Skip to content

Commit

Permalink
version update & fix nuget dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviuz committed Dec 21, 2024
1 parent f049b50 commit b553a3c
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions source/ECF.AutoFac/.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>EasyConsoleFramework.AutoFac</id>
<version>1.0.4</version>
<version>1.0.5</version>
<description>Easy Console Framewok - Framework for building command based IoC console application. This package is using AutoFac library for IoC.</description>
<authors>Aviuz</authors>
<tags>console IoC ecf autofac</tags>
Expand All @@ -18,19 +18,19 @@

<dependencies>
<group targetFramework="net6">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Autofac" version="6.5.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="6.0.0" />
</group>

<group targetFramework="net7">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Autofac" version="6.5.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
</group>

<group targetFramework="net8">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Autofac" version="6.5.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="8.0.0" />
</group>
Expand Down
2 changes: 1 addition & 1 deletion source/ECF.AutoFac/ECF.AutoFac.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
Expand Down
8 changes: 4 additions & 4 deletions source/ECF.HostedServices/.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>EasyConsoleFramework.HostedServices</id>
<version>1.0.4</version>
<version>1.0.5</version>
<description>Hosted Services plugin for Easy Console Framewok (ECF).</description>
<authors>Aviuz</authors>
<tags>console IoC ecf</tags>
Expand All @@ -18,17 +18,17 @@

<dependencies>
<group targetFramework="net6">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Microsoft.Extensions.Hosting.Abstractions" version="6.0.0" />
</group>

<group targetFramework="net7">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Microsoft.Extensions.Hosting.Abstractions" version="7.0.0" />
</group>

<group targetFramework="net8">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Microsoft.Extensions.Hosting.Abstractions" version="8.0.0" />
</group>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion source/ECF.HostedServices/ECF.HostedServices.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<RootNamespace>ECF.HostedServices</RootNamespace>
<AssemblyName>ECF.HostedServices</AssemblyName>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions source/ECF.Microsoft.DependencyInjection/.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ECF</id>
<version>1.0.4</version>
<version>1.0.5</version>
<description>Easy Console Framewok - Framework for building command based IoC console application. This package is using Microsoft.Extensions.DependencyInjection library for IoC</description>
<authors>Aviuz</authors>
<tags>console IoC ecf DependencyInjection</tags>
Expand All @@ -18,19 +18,19 @@

<dependencies>
<group targetFramework="net6">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="6.0.1" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="6.0.0" />
</group>

<group targetFramework="net7">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="7.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
</group>

<group targetFramework="net8">
<dependency id="EasyConsoleFramework.Base" version="1.0.4" />
<dependency id="EasyConsoleFramework.Base" version="1.0.5" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="8.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="8.0.0" />
</group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<AssemblyName>ECF</AssemblyName>
<RootNamespace>ECF</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/ECF.Templates/ECFTemplates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageType>Template</PackageType>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<PackageId>ECFTemplates</PackageId>
<Title>ECF Templates</Title>
<Authors>Aviuz</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyConsoleFramework.Autofac" Version="1.0.4" />
<PackageReference Include="EasyConsoleFramework.Autofac" Version="1.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/ECF.Templates/templates/ECF/NewProject.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ECF" Version="1.0.4" />
<PackageReference Include="ECF" Version="1.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions source/ECF/.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>EasyConsoleFramework.Base</id>
<version>1.0.4</version>
<version>1.0.5</version>
<description>Easy Console Framewok - Framework for building command based IoC console application. This package is base library without any IoC dependency.</description>
<authors>Aviuz</authors>
<tags>console IoC ecf</tags>
Expand All @@ -18,15 +18,15 @@

<dependencies>
<group targetFramework="net6">
<dependency id="Microsoft.Extensions.Configuration.Json" version="6.0.0" />
<dependency id="Microsoft.Extensions.Configuration.UserSecrets" version="6.0.0" />
</group>

<group targetFramework="net7">
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
<dependency id="Microsoft.Extensions.Configuration.UserSecrets" version="7.0.0" />
</group>

<group targetFramework="net8">
<dependency id="Microsoft.Extensions.Configuration.Json" version="8.0.0" />
<dependency id="Microsoft.Extensions.Configuration.UserSecrets" version="8.0.1" />
</group>
</dependencies>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion source/ECF/ECF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<RootNamespace>ECF</RootNamespace>
<AssemblyName>ECF.Base</AssemblyName>
</PropertyGroup>
Expand Down

0 comments on commit b553a3c

Please sign in to comment.