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-27[.NET] Compound Type Constraint Does Not Render (#545)Michael Jin
2020-12-07Sort assembly files and update expected XML files (#526)Xiao Luo
This change brings a higher consistency across environments, as originally the .dlls were read in whatever order the operating system enumerated them in; this proved to be inconsistent over time, so this will reduce unexpected results going forward.
2020-07-07Support F# style Attribute rendering (#503)Tianqi Zhang
2020-03-25display "TypeParameter" node for delegate only if generic parameters are ↵Ann Meng
declared by itself
2020-02-13EII url missing namespace in the middlemaopeixia
2019-12-20remove IsGenericType check when get field constant valueAnn Meng
2019-01-25Updates to test suite for attribute fxalternate changes.Joel Martinez
Closes #396
2018-10-11framework index files now include all assemblies listed.Joel Martinez
Resolves #103
2018-10-10all interfaces are now listed.Joel Martinez
Closes #334
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-06-28Attributes now get a FrameworkAlternate when they don't appear in all ↵Joel Martinez
frameworks. Resolves #76
2018-03-30mdoc: default values now filtered for special chars.Joel Martinez
Resolves #220
2018-03-28fx index files now reads correct namespace for nested types.Joel Martinez
Closes #218
2017-12-07[mdoc] Implementation details are now shown on membersMikhail Melnikov
Based on the pull request #170 Node <Implements> with subnodes <InterfaceMember> show which member(s) of interface(s) is(are) implemented <Implements> and <InterfaceMember> are added to monodoc-ecma.xsd Added the integration test `check-monodocer-members-implementation` Closes #158
2017-11-17mdoc: C# formatter is not outputting "protected internal"GRODNO\Anton_Sokolovskii
Corrected VB and C# formatters Edited integration tests Closes #137
2017-11-02mdoc: Reflected enums don't get their numeric value in the XMLGRODNO\Anton_Sokolovskii
Removed line from method `GetFieldConstValue` that forbade obtaining the value for `enum` Edited integration tests Closes #28
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-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
2017-06-30Documentation importing is now supported in Frameworks mode.Joel Martinez
You can now add a new element to frameworks.xml, `/Frameworks/Framework/import`, which is a path to the import documentation file (generated via the compiler's `/doc` parameter). An example test case was added in the make target, `check-monodocer-import-fx`. Closes #43