Add "True" and "False" to escaped keywords for VbNet Native types

I have the following c# enum

public enum DstInEffect
{
    True = 1,
    False = 2,
    Unknown = 3,
}

The generated vb is

Public Enum DstInEffect
    True = 1
    False = 2
    Unknown = 3
End Enum

However, “True” and “False” are reserved words which results in an error

We’re escaping Enum Keyword Names in this commit. This change is available from v5.0.0 that’s now available on MyGet. Please see this post for changes in v5.

Note you could also use a bool? for a tri-state boolean