filzrev
filzrev
This issue seems to be resolved at docfx v2.78.3. If it's still reproduced on docfx v2.78.3 or later. Please provide reproducible code.
This PR intended to support for .NET 10 SDK and Roslyn 5.x. But it's not supporting to generating API metadata that using C# 14 features. It need to additional tasks...
It seems target repository using C# 14 [Extension members](https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-14#extension-members). Currently docfx don't support C# 14 features. and failed to generate metadata. There are PR to update Roslyn version to 5.0.0....
[docfx 2.78.4 depends on Roslyn 4.14](https://www.nuget.org/packages/Docfx.Dotnet/2.78.4#dependencies-body-tab) So there is wrong documentation in the release notes.
I've confirmed NuGet warning can be suppressed by following config/command combinations. ###### 1. docfx.json ```json "properties": { "NuGetAudit": "false", } ``` #### 2. `docfx metadata` command** It need manually call...
I've tested on my environment. And it seem works as expected. (After `Ctrl+F5` browser refresh) Is it able to test by **temporary** [disabling browse caching](https://learn.microsoft.com/en-us/answers/questions/938647/devtools-sources-caching-issue)
Browser cache issue is expected to be fixed after #10891 merged. On currently `docfx serve` command behavior. [browser's default heuristic](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Caching#heuristic_caching) policy is used. and it seems to be causing old-cache...
MsBuild property that are defined at `properties` section of docfx.json are passes as `/property:{name}={value}` command line arguments. https://github.com/dotnet/roslyn/blob/93efd6df1781488d8781f2f9c89d184dcd54ef0b/src/Workspaces/MSBuild/Core/MSBuild/MSBuildWorkspace.cs#L56-L64 When MSBuild property is specified with command line argument. It override MSBuild...
> I do wonder if this is a bug in the roslyn msbuild compiler, since the project reference is very explicit: I thought it's designed behaviors of MSBuild. When property...
Reported regression seems be introduced by docfx v2.78.0. When running on v.2.77.0. It works as expected. When comparing HTML tags and applied styles. There are differences, Though, I haven't been...