api-doc-tools icon indicating copy to clipboard operation
api-doc-tools copied to clipboard

.NET Reference API Toolchain

Results 100 api-doc-tools issues
Sort by recently updated
recently updated
newest added

If a class is sealed, then you can't inherit it, so its protected members are invisible to users. So we should also hide those members in documentation.

enhancement

Found in the wild: M:AudioToolbox.AudioBuffers.op_Explicit(AudioToolbox.AudioBuffers)~System.IntPtr

Found in the wild: M:AddressBook.ABMutableMultiValue`1.Add(`0,Foundation.NSString)

After we publish a monodoc nuget (https://github.com/mono/api-doc-tools/issues/228 / https://github.com/mono/api-doc-tools/pull/246), we should move some types that are in the mdoc.exe project into monodoc. This should include type forwarders ... though I...

enhancement

From FSharp.Core smoke test: ![image](https://user-images.githubusercontent.com/6309070/44552183-4c6d9280-a6de-11e8-8e72-2d01c6bd6848.png) In the existing MSDN reference, this is: ![image](https://user-images.githubusercontent.com/6309070/44552196-5a231800-a6de-11e8-9a24-65ece2b0f241.png)

lang-fsharp

Today, DUs are not generated: ![image](https://user-images.githubusercontent.com/6309070/44498408-19ba9000-a633-11e8-92c9-ae519c3b63d2.png) See the MSDN reference entry for Option: https://msdn.microsoft.com/en-us/visualfsharpdocs/conceptual/core.option%5b't%5d-union-%5bfsharp%5d In this case, the `Some` and `None` cases should be shown.

lang-fsharp

Today, the following is emitted: ```fsharp type R = {} ``` Regardless of how many labels there are. All records should be printed as they would be in tooltips.

lang-fsharp

Example: ![image](https://user-images.githubusercontent.com/6309070/44372954-64090900-a49b-11e8-8147-cb133a162823.png) This type is actually declared in source as: ```fsharp [] [] [] type Result = /// Represents an OK or a Successful result. The code succeeded with a...

lang-fsharp

During a fix of #255, it was found that there is an inconsistency for EII in F#. Currently, F# usage signature for EII interface is generated as: `` However, [F#...

lang-fsharp

## Classes and structs Today, signatures for classes and structs look like this: ```fsharp type Hoopty = class interface IDoopty type Moopty = struct interface ISchwoopty ``` There are two...

bug
lang-fsharp