Will do. Here is an extension method for someone in the meantime:
public static void NotBe(this DateTimeAssertions assertions, DateTime expected) { Execute.Verification .ForCondition(assertions.Subject.Value != expected) .FailWith("Expected {0}{reason}, but found {1}.", expected, assertions.Subject.Value); }
Great project, thanks Dennis.