Skip to content

Commit

Permalink
net update.
Browse files Browse the repository at this point in the history
  • Loading branch information
NTDLS committed Dec 31, 2024
1 parent e847c3b commit 09f7199
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
Expand All @@ -13,7 +13,7 @@
<Authors>NetworkDLS</Authors>
<Company>NetworkDLS</Company>
<Product>NTDLS.DelegateThreadPooling</Product>
<Copyright>Copyright © 2024 NetworkDLS</Copyright>
<Copyright>Copyright © 2025 NetworkDLS</Copyright>
<PackageProjectUrl>https://github.com/NTDLS/NTDLS.DelegateThreadPooling</PackageProjectUrl>
<PackageIcon>Logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -23,7 +23,7 @@
<PackageReleaseNotes>
Dependency updates.
</PackageReleaseNotes>
<Version>1.5.8</Version>
<Version>1.5.9</Version>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<Description>Very high-performance active thread pool where work items can be queued as delegate functions. Allows you to easily enqueue infinite FIFO worker items or enforce queue size, wait on collections of those items to complete, and total control over the pool size. Also allows for multiple pools, so that different workloads do not interfere with one another.</Description>
</PropertyGroup>
Expand All @@ -44,7 +44,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NTDLS.Semaphore" Version="3.4.9" />
<PackageReference Include="NTDLS.Semaphore" Version="3.4.10" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion PerformanceTest/PerformanceTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion TestHarness/TestHarness.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down

0 comments on commit 09f7199

Please # to comment.