wanlitao / HangfireExtension

Hangfire Extension plugins
Apache License 2.0
22 stars 32 forks source link

support .net core? #7

Closed pMonfared closed 6 years ago

pMonfared commented 7 years ago

Hello Can you Port this Extension for .Net Core? support .NetStandard 1.6

wanlitao commented 7 years ago

maybe after the .Net Core 2.0 release.

PeterSawyer commented 7 years ago

I second Sqlite for .net core

bravecobra commented 7 years ago

I've already ported it for my personal usage. I might add a PR if wanted

dabide commented 7 years ago

@wanlitao, .NET Core 2.0 is released. :-) Is this something you'd like to do yourself, or would a PR be welcome?

wanlitao commented 7 years ago

Now I'm porting to .Net Core, I will publish dotnet core version on nuget as soon as possible

wanlitao commented 7 years ago

Now version 1.4.0 on nuget is support .Net Core 2.0

vhatsura commented 7 years ago

When I tried to use Hangfire.SQLite 1.4.0 in .Net Core 2.0 project I got a following exception:

NotSupportedException: Specified method is not supported.
System.Data.Common.DbConnection.EnlistTransaction(Transaction transaction)

It seems that Microsoft.Data.Sqlite doesn't not support transactions yet.

wanlitao commented 7 years ago

@VadimGatsura you can try version 1.4.2, the problem should be solved

vhatsura commented 7 years ago

@wanlitao version 1.4.2 works fine. Thanks!