Paul, is fixed at trunk, maybe you can have a look.
Fabio Maulo
January 7, 2010 at 2:44 PM
Any issue is Critical from the point of view of the user... the matter here is the point of view of NHV. btw thanks for your issue and patch
Paul Wideman
December 23, 2009 at 2:02 PM
I forgot to set the priority before filing the issue, obviously for me (and presumably anyone trying to use NHV in medium trust) this is a pretty critical issue.
Line 80 causes a VerificationException to be thrown in medium trust:
return validatorDef.Tags == null || validatorDef.Tags.Count == 0 ? new object[] { null } : validatorDef.Tags;
Replacing "new object[] { null }" with "new List<object>()" fixes the problem:
return validatorDef.Tags == null || validatorDef.Tags.Count == 0 ? new List<object>() : validatorDef.Tags;