Skip to content

Commit

Permalink
0.0.8 release, net 5
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloszKrajewski committed May 6, 2023
1 parent 6e47490 commit d83fb45
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## 0.0.7 (2023/05/06)
## 0.0.8 (2023/05/06)
* CHANGED: build process
* ADDED: GitHub actions
* FIXED: Minor bug in AliveKeeper (sometimes actions were called with not items at all)
* CHANGED: Minor optimization in AliveKeeper (removed unnecessary allocations)
* ADDED: Explicit target for .NET 5

## 0.0.5 (2021/04/11)
* ADDED: ITimeSource to ManualResetSignal
Expand Down
10 changes: 8 additions & 2 deletions src/K4os.Async.Toys/K4os.Async.Toys.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)'=='net5.0' ">
<PackageReference Include="System.Threading.Channels" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)'!='net5.0' ">
<PackageReference Include="System.Threading.Channels" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
</ItemGroup>
<Import Project="$(PublicAssemblyProps)" />
</Project>

0 comments on commit d83fb45

Please sign in to comment.