Skip to content

Commit

Permalink
Handyman.DependencyInjection & net8
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasSamuelsson committed Nov 23, 2023
1 parent 821d2b2 commit 1ebcecc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
9 changes: 8 additions & 1 deletion src/Handyman.DependencyInjection/docs/changelog.md
@@ -1,9 +1,16 @@
# Handyman.DependencyInjection changelog

## 2.7.0 - 2023-11-23

* Add `.net8.0` TFM.
* Package upgrades
* Microsoft.SourceLink.GitHub 8.0.0

## 2.6.0 - 2022-09-02

* Add `IScanner.Assemblies(IEnumerable<Assembly>)` method.
## 2.4.2 - 2022-11-15

## 2.5.0 - 2022-11-15

* Added `net7.0` TFM.
* Removed `netcoreapp3.1` & `net5.0` TFMs.
Expand Down
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

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

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

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

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>

</Project>
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

<ItemGroup>
Expand Down

0 comments on commit 1ebcecc

Please sign in to comment.