Skip to content

Commit

Permalink
Handyman.DependencyInjection v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasSamuelsson committed Nov 13, 2024
1 parent be30728 commit aa9ff77
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
9 changes: 9 additions & 0 deletions src/Handyman.DependencyInjection/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Handyman.DependencyInjection changelog

## 3.0.0 - 2024-11-13

* Add `net9.0` TFM.
* Remove `.net7.0` TFM.
* Remove `.net6.0` TFM.
* Package upgrades
* `.net8.0`
* Microsoft.Extensions.DependencyInjection 8.0.1

## 2.7.0 - 2023-11-23

* Add `.net8.0` TFM.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;net6.0;net7.0;net8.0</TargetFrameworks>
<Version>2.7.0</Version>
<TargetFrameworks>net472;net8.0;net9.0</TargetFrameworks>
<Version>3.0.0</Version>

<!-- Builds symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
Expand All @@ -13,16 +13,12 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
</ItemGroup>

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

<PropertyGroup>
<TargetFrameworks>net472;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net472;net8.0;net9.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit aa9ff77

Please sign in to comment.