Giter VIP home page Giter VIP logo

Comments (9)

kavatari avatar kavatari commented on May 25, 2024

Same problem here. Using Quartz.net 3.2

Edit:
Using quartz.net v3.0.7 it works pretty nice. Will try to create a pull request for the version 3.2.+

from quartzmin.

kavatari avatar kavatari commented on May 25, 2024

Easy as it is, the problem is the referenced package version of quartz.net 3.07. used by quartzmin. Forked the repo and updated the reference to 3.2.1

from quartzmin.

duytech avatar duytech commented on May 25, 2024

I had the same problem
with asp.net core 3.1 and quartz.net 3.2.0
could someone fix this and make a nuget package?
@maikebing

from quartzmin.

duytech avatar duytech commented on May 25, 2024

@jlucansky

from quartzmin.

KhaledSMQ avatar KhaledSMQ commented on May 25, 2024

I have same problem

from quartzmin.

ExcaliburVT avatar ExcaliburVT commented on May 25, 2024

I really need to get this running under my .Net Core 3.1/Quartz .net 3.2.0 app and can't find a quartz admin UI that works. @maikebing @jlucansky any chance we can get a new nuget package?

from quartzmin.

dsbcPedro avatar dsbcPedro commented on May 25, 2024

I have made some changes in the code in order to make it work

public async Task Save([FromForm] JobViewModel model, bool trigger)
{
....
var t = JobBuilder.Create();
t= t.StoreDurably(true);

                var tmp = BuildJob(t);
                
                await Scheduler.AddJob(tmp, replace: false); 

...

}

I am not using Nuget

from quartzmin.

codermrrob avatar codermrrob commented on May 25, 2024

Worked for me, although I just changed line 173 in JobsController.cs

await Scheduler.AddJob(BuildJob(JobBuilder.Create().StoreDurably()), replace: false)

to :

await Scheduler.AddJob(BuildJob(JobBuilder.Create().StoreDurably(true)), replace: false);

from quartzmin.

gerneio avatar gerneio commented on May 25, 2024

I ended up downloading this repo and making the necessary version changes myself, but looks like there are several other forked repos that have probably already done the same (find here and sort by recent). Main thing was to change from supporting net452 to net461 in order to use Quartz.Net v3.3.3 in all the underlying solutions.

from quartzmin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.