Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-15 Enabling Guid type projection for C++/WinRT and C++/CX. (#546)Jeff Chen
https://dev.azure.com/ceapex/Engineering/_workitems/edit/344653
2021-04-14Improve argument value formatter (#539)Xiao Luo
https://dev.azure.com/ceapex/Engineering/_workitems/edit/366340
2020-08-11method getter incorrectly marked as implementing nonexistant interface ↵maopeixia
member (#512) https://ceapex.visualstudio.com/Engineering/_workitems/edit/272318
2020-08-01Cleaning up existing content when importing: `related`, `seealso` (#510)maopeixia
https://ceapex.visualstudio.com/Engineering/_workitems/edit/173471 https://ceapex.visualstudio.com/Engineering/_workitems/edit/271797
2020-06-11[mdoc] come up with test/design for better member implementation detectionmaopeixia
2020-03-20[mdoc] EIIs of internal interfaces show up on docsmaopeixia
2020-02-17Bug : Add source code for custommarshalers.dll (now remove dll, replace with ↵maopeixia
testclass)
2020-02-13EII url missing namespace in the middlemaopeixia
2020-01-17Adds tuple and nullable support for C# formatterJoel Martinez
2020-01-11moved custommarshalers.dll assembly so it works in debug and releaseJoel Martinez
2020-01-11Merge branch 'develop' into mpx-mdoc-1.0.0.2Joel Martinez
2020-01-06 test resolve Makeit errormaopeixia
2020-01-06changing the format strings for double to G17 and single to g9maopeixia
2019-12-20Formatted fuction Optional Parameter Default Value "null" to "default"maopeixia
2019-01-08Fix MemberSignatures for ref returns and ref readonly returnsTianqi Zhang
2018-07-05mdoc: Incorrect signatures generated for return typesGRODNO\Anton_Sokolovskii
Removed namespace when return type is generic Added integration tests Added unit test Add RefType attribute to ReturnType element Closes #230
2018-05-30Fix check of ignored membersMikhail Melnikov
In `DocUtils.IsIgnored`, check if member is generated by a compiler before checking of prefixes Closes #199
2018-04-27Special treatment of ref-like structs to not produce Obsolete attributeMikhail Melnikov
Added a unit test for MDocUpdater.GetCustomAttributes Added logic to skip the attribute `Obsolete` Changed test classes hierarchy Closes #225
2018-04-26mdoc: C# Finalizer Signatures for Generic Types incorrectGRODNO\Anton_Sokolovskii
Edited signature for destructor in a generic classes Edited integration test Added unit test Closes #184
2017-12-22mdoc: Support for Javascript signaturesMikhail Melnikov
Added Javascript usage formatter Added unit tests Added `check-monodocer-javascript` integration test `MemberSignature` and `TypsSignature` can contain just `Usage` attribute now, fixed XSD schema
2017-09-26mdoc: IL signatures now reflect ref, in, and out modifiers.Joel Martinez
Closes #118
2017-09-22mdoc: C# signatures now include `params` when appropriate.Joel Martinez
Closes #78
2017-09-02mdoc: update now using ILAsm signature for tracking.Joel Martinez
Due to some recent changes to the C# signature (operators), it was not properly connecting the member to the existing node, causing a duplicate entry in the XML. By using ILASM (which is less likely to change), we work around this problem. Closes #107.
2017-08-01mdoc: C# operator signatures are now generated correctly.Joel Martinez
Previously, mdoc simply used the compiler-generated method names for operators, such as `op_Multiply`, instead of `operator *`. This releases fixes that for all unary, binary, comparison, and conversion operators. Closes #82