11<Project Sdk =" Microsoft.NET.Sdk" >
22
3- <PropertyGroup Condition =" '$(OS)' != 'Windows_NT' " >
4- <TargetFramework >netstandard2.0</TargetFramework >
5- </PropertyGroup >
6- <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
7- <TargetFrameworks >netstandard2.0;net48</TargetFrameworks >
8- </PropertyGroup >
9- <PropertyGroup >
10- <Version >0.4.2</Version >
11- <Authors >RaisedApp</Authors >
12- <Company >RaisedApp</Company >
13- <Copyright >Copyright © 2019 - Present</Copyright >
14- <PackageLicenseFile >LICENSE</PackageLicenseFile >
15- <PackageProjectUrl >https://github.com/raisedapp/Hangfire.Storage.SQLite</PackageProjectUrl >
16- <RepositoryUrl >https://github.com/raisedapp/Hangfire.Storage.SQLite</RepositoryUrl >
17- <RepositoryType >git</RepositoryType >
18- <PackageTags >Hangfire Hangfire-Storage Hangfire-Extension SQLite</PackageTags >
19- <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
20- <title >Hangfire Storage SQLite</title >
21- <Description >An Alternative SQLite Storage for Hangfire</Description >
22- <PackageReleaseNotes >
23- 0.4.2
24- -remove re-entrancy (fixes SQLiteDistributedLock doesn't play right with async #68). Thanks to @kirides
25- -pause heartbeat timer while processing. Thanks to @kirides
26- -update expiration using SQL Update statement in a single step. Thanks to @kirides
27- -Added Heartbeat event (for testing). Thanks to @kirides
28- -if we no longer own the lock, we immediately dispose the heartbeat timer (fixes Unable to update heartbeat - still happening in .NET 6.0 #69). Thanks to @kirides
29- </PackageReleaseNotes >
30- </PropertyGroup >
31- <ItemGroup >
32- <None Include =" ..\..\..\LICENSE" >
33- <Pack >True</Pack >
34- <PackagePath ></PackagePath >
35- </None >
36- </ItemGroup >
37- <ItemGroup >
38- <PackageReference Include =" Hangfire.Core" Version =" 1.8.0" />
39- <PackageReference Include =" sqlite-net-pcl" Version =" 1.8.116" />
40- </ItemGroup >
3+ <PropertyGroup Condition =" '$(OS)' != 'Windows_NT' " >
4+ <TargetFramework >netstandard2.0</TargetFramework >
5+ </PropertyGroup >
6+ <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
7+ <TargetFrameworks >netstandard2.0;net48</TargetFrameworks >
8+ </PropertyGroup >
9+ <PropertyGroup >
10+ <Version >0.4.3</Version >
11+ <Authors >RaisedApp</Authors >
12+ <Company >RaisedApp</Company >
13+ <Copyright >Copyright © 2019 - Present</Copyright >
14+ <PackageLicenseFile >LICENSE</PackageLicenseFile >
15+ <PackageProjectUrl >https://github.com/raisedapp/Hangfire.Storage.SQLite</PackageProjectUrl >
16+ <RepositoryUrl >https://github.com/raisedapp/Hangfire.Storage.SQLite</RepositoryUrl >
17+ <RepositoryType >git</RepositoryType >
18+ <PackageTags >Hangfire Hangfire-Storage Hangfire-Extension SQLite</PackageTags >
19+ <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
20+ <title >Hangfire Storage SQLite</title >
21+ <Description >An Alternative SQLite Storage for Hangfire</Description >
22+ <PackageReleaseNotes >
23+ 0.4.3
24+ - Upgrade projects to .NET 8.0 (LTS).
25+ - Update dependencies (Hangfire 1.8.23, Newtonsoft.Json 13.0.4).
26+ - Explicitly referenced SQLitePCLRaw.bundle_green 2.1.11 to resolve NETSDK1206 RID-related warnings.
27+ - Support for modern Hangfire 1.8 background process registration (GetStorageWideProcesses).
28+ </PackageReleaseNotes >
29+ </PropertyGroup >
30+ <ItemGroup >
31+ <None Include =" ..\..\..\LICENSE" >
32+ <Pack >True</Pack >
33+ <PackagePath ></PackagePath >
34+ </None >
35+ </ItemGroup >
36+ <ItemGroup >
37+ <PackageReference Include =" Hangfire.Core" Version =" 1.8.23" />
38+ <PackageReference Include =" Newtonsoft.Json" Version =" 13.0.4" />
39+ <PackageReference Include =" sqlite-net-pcl" Version =" 1.9.172" />
40+ <PackageReference Include =" SQLitePCLRaw.bundle_green" Version =" 2.1.11" />
41+ </ItemGroup >
4142
4243</Project >
0 commit comments