filzrev

Results 220 comments of filzrev

> If we pass a custom config with NullLogger to BenchmarkRunner or BenchmarkSwitcher, it is expected that we will not see the output. What's wrong with this behavior? The logger...

Close this PR, The reason is that the following workaround is available. 1. Add custom logger that delegate logging to `ConsoleLogger.Default` 2. Add custom EventProcessor. and when `OnStartValidationStage` is called....

Uploaded `.xrefmap.json` file size is about `131MB`. And it's downloaded when running `docfx build` command every times. I though it's better to used pre-download `xrefmap` files. **Steps to use** 1....

> docfx download xrefmap.zip --xref https://github.com/dotnet/docfx/raw/main/.xrefmap.json `docfx download` command that is commented above is not works as I've expected. Because docfx repositories `.xrefmap.json` file use `baseUrl: https://learn.microsoft.com/dotnet/api/`. And `href` value...

> 131mb? I'm seeing 323mb. I thought 131MB xrefmap is downloaded from this repository (Last updated about 6 month ago). And 323MB `xrefmap.json` file is downloaded from `learn.microsoft.com` (that commented...

Debuggability of docfx JavaScript error are improved by #9694. Above PR adding JavaScript StackTrace information at end of error messages. **Example** > C:\projects\docfx.issue4057\docs\api\Examples.Class1.yml: error ApplyTemplatePreprocessorError: Error transforming model generated from...

When generating API metadata from DLLs. It requires documentation XML files to extract comments. What would happen if the following lines were added to `.csproj`. ```xml true

> Why does specifying the csproj as input work without having that entry? When generating docs from csproj. docfx run code analysis to `C# source code`. (It's executed on memory....

Is it able to provide a minimum set of reproducible source files? I've tried to reproduce the described condition, but without success. > assembly (placed as a .net ref source)...

`InvalidDataException` seems thrown by following lines. https://github.com/dotnet/docfx/blob/3d5de092589b8e4a0b2e1be8e9813584d216e795/src/Docfx.Dotnet/ManagedReference/Visitors/YamlModelGenerator.cs#L116-L128 And exception message text indicate both `symbol.MetadataName` and `symbol.ContainingSymbol?.MetadataName` are empty. > Seems it is happened in case obfuscated assemblies only. Microsoft.CodeAnalysis.AttributeData will...