Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviuz committed Aug 13, 2024
1 parent 4176009 commit 22692de
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 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.0</version>
<version>1.0.1</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.0" />
<dependency id="EasyConsoleFramework.Base" version="1.0.1" />
<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.0" />
<dependency id="EasyConsoleFramework.Base" version="1.0.1" />
<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.0" />
<dependency id="EasyConsoleFramework.Base" version="1.0.1" />
<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.0</Version>
<Version>1.0.1</Version>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
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.0</version>
<version>1.0.1</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.0" />
<dependency id="EasyConsoleFramework.Base" version="1.0.1" />
<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.0" />
<dependency id="EasyConsoleFramework.Base" version="1.0.1" />
<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.0" />
<dependency id="EasyConsoleFramework.Base" version="1.0.1" />
<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
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.0</Version>
<Version>1.0.1</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.0</Version>
<Version>1.0.1</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.0" />
<PackageReference Include="EasyConsoleFramework.Autofac" Version="1.0.1" />
</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.0" />
<PackageReference Include="ECF" Version="1.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion 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.0</version>
<version>1.0.1</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 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.0</Version>
<Version>1.0.1</Version>
<RootNamespace>ECF</RootNamespace>
<AssemblyName>ECF.Base</AssemblyName>
</PropertyGroup>
Expand Down

0 comments on commit 22692de

Please sign in to comment.