From e302bed4175d3b135d087967a231b4d66ced1870 Mon Sep 17 00:00:00 2001 From: ncguilbeault Date: Thu, 8 Jan 2026 12:38:04 +0000 Subject: [PATCH] Override the msbuild property `ProduceReferenceAssemblies` in docfx config to fix warning about missing metadata reference following this: https://github.com/dotnet/docfx/issues/9804 --- docs/docfx.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/docfx.json b/docs/docfx.json index c5429614..a505b0e2 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -12,7 +12,10 @@ "output": "../artifacts/docs/api/", "enumSortOrder": "declaringOrder", "memberLayout": "separatePages", - "filter": "filter.yml" + "filter": "filter.yml", + "properties": { + "ProduceReferenceAssembly": "true" + } } ], "build": {