There is a missing trailing ':' in line 5.

apiRules:
- exclude:
  uidRegex: '^PhoenixControls\.Data\.AirStationDataSet'
- exclude:
  uidRegex: '^PhoenixControls\.Data\.ProductionOrderData'
- exclude:
  uidRegex: '^PhoenixControls\.Data\.ReferenceDataSet'

Give VS Code with the YAML exension a try to edit YAML. It will highlight such mistakes:

Answer from stefan.seeland on Stack Overflow
🌐
Hellosnow
hellosnow.github.io › docfx › tutorial › howto_filter_out_unwanted_apis.html
How-to: Filter Out Unwanted APIs | DocFX website
docfx.exe metadata -filter <path relative to baseDir or absolutepath> docfx.json metadata section filter property.
🌐
GitHub
github.com › dotnet › docfx › issues › 3665
Cannot filter out the APIs · Issue #3665 · dotnet/docfx
November 22, 2018 - DocFX Version Used: 2.40.2 Template used: (default or statictoc or contain custom template) statistic Steps to Reproduce: Created a filter document (filterConfig.yml) Included APIs apiRules: -include: uidRegex: ^Kevin.Avignon.People.Name...
Author: dotnet
🌐
Stack Overflow
stackoverflow.com › questions › 75545514 › docfx-filter-specific-classes
DocFX filter specific Classes - Stack Overflow
{ "metadata": [ { "src": [ { "files": ["**.dll"], "src": "../X3_Models/bin/Release/net7.0" } ], "dest": "api", "includePrivateMembers": false, "disableGitFeatures": false, "disableDefaultFilter": false, "namespaceLayout": "flattened", "filter": "filterConfig.yml" } ],
🌐
.NEXT
dotnet.github.io › docfx › docs › dotnet-api-docs.html
.NET API Docs | docfx - Microsoft .NET
To bulk filter APIs with custom filter rules, add a custom YAML file and set the filter property in docfx.json to point to the custom YAML filter:
🌐
GitHub
github.com › dotnet › docfx › issues › 1780
Filter inherited members? (feature request) · Issue #1780 · dotnet/docfx
June 19, 2017 - Filter inherited members? (feature request) I would like to filter inherited members. For example, System.Object produces a lot of 'noise', and distracts from more relevant documentation:
Author: dotnet
🌐
Stack Overflow
stackoverflow.com › questions › 59934701 › docfx-unable-to-filter-out-public-method-from-api-documentation
c# - DocFX - Unable to filter out public Method from API Documentation - Stack Overflow
January 28, 2020 - I have the following method in my class library that I want to hide from API documentation: namespace com.contoso.myns { public class myclass { public static string CreateSomething...
Find elsewhere
🌐
GitHub
github.com › dotnet › docfx › issues › 3380
Cannot selective include types in API filter · Issue #3380 · dotnet/docfx
September 6, 2018 - DocFX Version Used: 2.39.1.0 Template used: default I would like to write an apifilter.yml where all types (interfaces, classes) and namespaces should be excluded unless explicitly included in the filter. Consider the following structure...
Author: dotnet
🌐
Stack Overflow
stackoverflow.com › tags › docfx › hot
Hottest 'docfx' Answers - Stack Overflow
To change the location of the docfx output, edit the docfx.json file and specify the dest value. By default it is "dest": "_site".
🌐
Docascode
docascode.github.io › template › tutorial › howto_filter_out_unwanted_apis_attributes
How-to: Filter Out Unwanted APIs or Attributes
{ "metadata": [ { "src": [ { "files": [ "src/**.csproj" ], "exclude": [ "**/bin/**", "**/obj/**" ] } ], "dest": "obj/api", "filter": "filterConfig.yml" } ] } DocFX has a default filter configuration. If the user doesn't specify the filter configuration file path, default filter configuration ...
🌐
GitHub
github.com › opentk › opentk.net › blob › docfx › filterConfig.yml
opentk.net/filterConfig.yml at docfx · opentk/opentk.net
The OpenTK website. Contribute to opentk/opentk.net development by creating an account on GitHub.
Author: opentk
🌐
GitHub
github.com › dotnet › docfx › issues › 1948
Exclude API class · Issue #1948 · dotnet/docfx
July 24, 2018 - DocFX Version Used 2.22.2.0 Template used: default Steps to Reproduce: Trying to exclude a specific class from being included, so I have added to docfx.json the filter option: ], "dest": "api", "filter": "filterConfig.yml" } Inside the f...
Author: dotnet
🌐
GitHub
github.com › dotnet › docfx › issues › 8427
[Bug] Custom namespace filter rules not working anymore · Issue #8427 · dotnet/docfx
February 20, 2023 - And create in the same folder a filterConfig.yml file: apiRules: - include: uidRegex: ^ConsoleApp1\.Domain\.Models - exclude: uidRegex: ^ConsoleApp1\.Domain · Run the serve command. Generated documentation will be empty · Expected behavior Generated documentation shall contain documentation for the ConsoleApp1.Domain.Models namespace (Class1). To have a test, perform the same steps as above but with the 2.61.0 version installed. ... Docfx version: [e.g.
Author: dotnet
🌐
GitHub
github.com › dotnet › docfx › issues › 2759
Search filter · Issue #2759 · dotnet/docfx
May 11, 2018 - I'm a newbie so I could have easily missed it... Looking at the Microsoft Dynamics docs they have a way to apply a filter in the top search box.
Author: dotnet
🌐
GitHub
github.com › dotnet › docfx › issues › 7064
filterConfig not filtering methods with attribute · Issue #7064 · dotnet/docfx
February 16, 2021 - DocFX Version Used: 2.56.6 · Steps to Reproduce: Filter config file: apiRules: - exclude: hasAttribute: uid: System.ComponentModel.EditorBrowsableAttribute ctorArguments: - System.ComponentModel.EditorBrowsableState.Advanced · Attribute over code: [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)] Metadata section of docfx.json ·
Author: dotnet