i am trying to set Misfire instruction to ignore the missed triggers
<object id="RunSchedulerJobTrigger" type="Spring.Scheduling.Quartz.CronTriggerObject, Spring.Scheduling.Quartz, Version=1.2.0.23130, Culture=neutral, PublicKeyToken=65e474d141e25e07">
<property name="jobDetail" ref="RunSchedulerJob" />
<property name="cronExpressionString" value="0 30 0 * * ?"/>
<!-- Value is a Cron String (0-Seconds[0-59] 30-Minutes[0-59] 0-hours[0-23] * * ?) means, Fire everyday at 12:30AM -->
**<property name="misfireInstructionName" value="IgnoreMisfirePolicy"/>**
</object>
but getting an error which says
Error creating object with name 'RunSchedulerJobTrigger' defined in 'file [D:\Configuration\AppContext.xml] line 17' : Initialization of object failed : Unknown field 'IgnoreMisfirePolicy' ---> System.Exception: Unknown field 'IgnoreMisfirePolicy' at Spring.Scheduling.Quartz.Constants.AsNumber(String field) at Spring.Scheduling.Quartz.CronTriggerObject.set_MisfireInstructionName(String value) at Spring.Expressions.PropertyOrFieldNode.SetPropertyOrFieldValue(Object context, EvaluationContext evalContext, Object newValue) at Spring.Expressions.PropertyOrFieldNode.Set(Object context, EvaluationContext evalContext, Object newValue) at Spring.Objects.ObjectWrapper.SetPropertyValues(IPropertyValues propertyValues, Boolean ignoreUnknown) at Spring.Objects.Factory.Support.AbstractAutowireCapableObjectFactory.ApplyPropertyValues(String name, RootObjectDefinition definition, IObjectWrapper wrapper, IPropertyValues propertie...