DotNet core enquing a aspnet4 job

I have a new Dotnet core 2.0 application that needs to enqueue a job that was written in aspnet4.

Has anybody done that successfully?

Thanks!

I basically want to use this inside of a core 2.0 application

GlobalConfiguration.Configuration.UseSqlServerStorage(_config.GetConnectionString(“conn”));
var jobId = BackgroundJob.Enqueue((t) => t.DoSomething());

Is there away to enqueue without having a direct reference to an assembly?