Skip to content

Commit

Permalink
fix: Don't flag members as not implemented in bindable metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Nov 2, 2021
1 parent 787c644 commit 1f4351d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ from type in module.GlobalNamespace.GetNamespaceTypes()
writer.AppendLine();
writer.AppendLineInvariant("#pragma warning disable 618 // Ignore obsolete members warnings");
writer.AppendLineInvariant("#pragma warning disable 1591 // Ignore missing XML comment warnings");
writer.AppendLineInvariant("#pragma warning disable Uno0001 // Ignore not implemented members");
writer.AppendLineInvariant("using System;");
writer.AppendLineInvariant("using System.Linq;");
writer.AppendLineInvariant("using System.Diagnostics;");
Expand Down

0 comments on commit 1f4351d

Please sign in to comment.