forked from ChrisFulstow/NBlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJobs.Debug.config
More file actions
31 lines (27 loc) · 907 Bytes
/
Jobs.Debug.config
File metadata and controls
31 lines (27 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<quartz xmlns="http://quartznet.sourceforge.net/JobSchedulingData"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.0"
overwrite-existing-jobs="true">
<!-- Cron expression reference: http://www.quartz-scheduler.org/docs/tutorial/TutorialLesson06.html -->
<!--
Examples:
- Every minute: 0 0/1 * * * ?
- Every day at 13.30pm: 0 30 13 ? * *
-->
<!--<job>
<job-detail>
<name>Backup</name>
<description>Executes data repository backup</description>
<job-type>NBlog.Web.Application.Job.Backup, NBlog.Web</job-type>
</job-detail>
<trigger>
<cron>
<name>BackupTrigger</name>
<description>A description</description>
<job-name>Backup</job-name>
<cron-expression>0 0/5 * * * ?</cron-expression>
</cron>
</trigger>
</job>-->
</quartz>