filzrev

Results 36 comments of filzrev

Thanks for your reply. I've confirmed it can reproduce problems when specify xrefmap with URLs. It's regression introduced by my PR commit. And it occurred when following conditions met. 1....

Related issue (#8872) For temporary workaround. It can use internal `RunBuild.Exec` method directly. By using [IgnoresAccessChecksToGenerator](https://github.com/aelij/IgnoresAccessChecksToGenerator). ### Example configs of csproj . ```xml ```

It seems failed because `codecov/codecov-action@v4` drop supports for ` token-less` uploads. https://github.com/codecov/feedback/issues/315 It need set to `repository secret` and explicitly specify `CODECOV_TOKEN`. And set `fail_ci_if_error: true` to stop CI. https://github.com/dotnet/docfx/blob/main/.github/workflows/ci.yml#L46-L47...

> without any styles/template. When `template` is not specified. `default` template is used as fallback value. It seems same problems that are reported at (#9653) --- I can also reproduce...

For `docfx` heading element problems. It seems be occurred by following logics. https://github.com/dotnet/docfx/blob/b7285fcdfb04e6f4132d702217588de6236bfa4c/src/Docfx.App/PdfBuilder.cs#L161C1-L161C92 It's not completed if `docfx` ID element exists (and `docfx.ready` variable is not set when using `default`...

It seems **original reported issue** can be resolved by updating PolySharp to [PolySharp 1.14.1](https://github.com/Sergio0694/PolySharp/releases/tag/1.14.1) If there are another issue that relating to `namespace` and `"namespaceLayout": "nested"`. Please provide minimal reproduceable...

It can be handled by using [Stylecop.Analyzer](https://github.com/DotNetAnalyzers/StyleCopAnalyzers). By setting rule [SA1004: DocumentationLinesMustBeginWithSingleSpace](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1004.md) as `warning`. **Steps** 1. Install `StyleCop.Analyzers.Unstable` NuGet analyzer packages to project. 2. Set following settings to `.editorconfig` file....

It seems latest version of docfx (v2.76.0) seems not output tabbed content entirely.

Reported issue seems to be caused by following functions. - `findActiveItem` - `commonUrlPrefix` https://github.com/dotnet/docfx/blob/81790ce66fb18686af93707f83b0e2bd218478e4/templates/modern/src/nav.ts#L136-L161 `pathname.split('/')` generate string array with heading element is empty string. So currently `commonUrlPrefix` always return value...

> Exception: The server disconnected unexpectedly. It seems to be thrown by following lines when calling `MSBuildWorkspace::LoadProjectFileAsync`. https://github.com/dotnet/roslyn/blob/b67df4c5e39ac1a104b2e573542211d4d6b1cd1d/src/Workspaces/Core/MSBuild/Rpc/RpcClient.cs#L87-L89 docfx 2.76.0 using roslyn 4.9.2 packages. and `out-of-process code analysis` that are...