You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using System;namespaceDotnetNew{// generates just fine:publicclassClass1{}// generates OK, though it could be betterpublicrecordClass2{}// generates just fine:publicstructStruct1{}// generates just fine:publicreadonlystructStruct2{}// fails:publicrecordstructStruct3{}// fails:publicreadonlyrecordstructStruct4{}}
The text was updated successfully, but these errors were encountered:
Operating System:
Windows
DocFX Version Used: 2.59.3.0
Template used: whatever docfx-seed uses
Steps to Reproduce:
git clone https://github.com/docascode/docfx-seed
docfx.json
, changesrc/DotnetNew/*.csproj
toDotnetNew/*.csproj
src/DotnetNew
, update the .csproj file'sTargetFramework
tonet6.0
and add a record struct. Examples down below.docfx docfx.json --serve
Expected Behavior:
You should see the record struct in the list of types.
Actual Behavior:
Where it should have been, there's a link to
DotnetNew..html
.Sample Files:
The text was updated successfully, but these errors were encountered: