From c15fea90822f62c701e71ff042c9611088619ae1 Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Thu, 19 Mar 2020 21:38:21 -0400 Subject: [PATCH 1/2] exclude placeholders This should fix several build warnings. The C# team has added placeholders for the spec language for some features. Until those articles have text, they should not be published. --- docfx.json | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/docfx.json b/docfx.json index a0fff2196cb8c..7931792751198 100644 --- a/docfx.json +++ b/docfx.json @@ -45,7 +45,32 @@ "exclude": [ "**/README.md", "inactive/**", - "rejected/**" ] + "rejected/**", + + "csharp-6.0/enum-base-type.md", + + "csharp-7.0/expression-bodied-everything.md", + "csharp-7.0/ref-locals-returns.md", + "csharp-7.0/tuples.md", + "csharp-7.0/value-task.md", + + "csharp-7.2/readonly-struct.md", + "csharp-7.2/ref-extension-methods.md", + "csharp-7.2/ref-struct-span.md", + "csharp-7.2/span-safety.md", + + "csharp-7.3/enum-delegate-constraint.md", + "csharp-7.3/ref-loops.md", + + "csharp-8.0/alternative-interpolated-verbatim.md", + "csharp-8.0/async-using.md", + "csharp-8.0/constraints-in-overrides.md", + "csharp-8.0/constructed-unmanaged.md", + "csharp-8.0/notnull-constraint.md", + "csharp-8.0/obsolete-accessor.md", + "csharp-8.0/shadowing-in-nested-functions.md", + "csharp-8.0/unconstrained-null-coalescing.md" + ] }, { "files": [ From 4b444056657c7c13813975746a2c0e31ebfea680 Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Thu, 19 Mar 2020 22:18:15 -0400 Subject: [PATCH 2/2] fix exclude errors --- docfx.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docfx.json b/docfx.json index 7931792751198..2dee4e1519021 100644 --- a/docfx.json +++ b/docfx.json @@ -56,10 +56,9 @@ "csharp-7.2/readonly-struct.md", "csharp-7.2/ref-extension-methods.md", - "csharp-7.2/ref-struct-span.md", - "csharp-7.2/span-safety.md", + "csharp-7.2/ref-struct-and-span.md", - "csharp-7.3/enum-delegate-constraint.md", + "csharp-7.3/enum-delegate-constraints.md", "csharp-7.3/ref-loops.md", "csharp-8.0/alternative-interpolated-verbatim.md",