When attempting to register a RegistrationTrigger on Windows 10 (latest preview build) the wrapper (v2.3.4) blows up and throws the following exception:
Microsoft.Win32.TaskScheduler.NotV1SupportedException occurred
```
var oneTimeTrigger = (RegistrationTrigger)taskDefinition.Triggers.Add(new RegistrationTrigger());
oneTimeTrigger.Delay = TimeSpan.FromSeconds(5);
```
Comments: ** Comment from web user: dahall **
Microsoft.Win32.TaskScheduler.NotV1SupportedException occurred
```
var oneTimeTrigger = (RegistrationTrigger)taskDefinition.Triggers.Add(new RegistrationTrigger());
oneTimeTrigger.Delay = TimeSpan.FromSeconds(5);
```
Comments: ** Comment from web user: dahall **
I don't believe this is a library or OS version problem. Instead, I would guess that you entered 'true' for the last parameter (forceV1) value in the TaskService constructor forcing the library to use the old (v1) code base from Microsoft. Under V1, the RegistrationTrigger is not supported.