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
2018-06-06bump version to 5.7Joel Martinez
2018-06-06Adding "FrameworkAlternate" and "Index" to XSDJoel Martinez
Updated to add attributes to MemberSignature, TypeSignature, Parameter, TypeParameter. Additionally, added validation unit tests, and reformatted the mdoc validator subcommand for future-proof maintainability. Closes #262
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-05-29Fixed missing API for VisualC reflected binaryMikhail Melnikov
For some C++ classes, generic parameters doesn't exist before `Resolve` is called. Added `type = type.Resolve();` for types with IsRequiredModifier == true. Closes #200
2018-05-26Attributes now receive `FrameworkAlternate`.Joel Martinez
This is for both types, members, and assembly attributes. Resolves #76
2018-05-03Fixed unit test that failed on mac.Joel Martinez
Unit test was using FSharpMap, but the list of interfaces being implemented were different on my local install. So to avoid depending on the locally installed SDK, just added a test class that will be consistent to test against.
2018-05-01Set `Prefer32Bit` to false for debug configuration.Joel Martinez
Related to #241
2018-05-01Set `Prefer32Bit` to false for release configuration.Joel Martinez
Related to #241
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-27check for embedded type was added - presence of two attributes mentioned in ↵katsiaryna_bialiatka
the ticket is checked add integration test Closes #212
2018-04-26fix libs for integration testskatsiaryna_bialiatka
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
2018-04-26Unused usingMatthew Leibowitz
2018-04-26Reduce the number of looping LINQ bits and just use a plain old foreach #232Matthew Leibowitz
2018-04-26mdoc: Fixed tuple class incorrect representationMikhail Melnikov
Added: if this is a declaration of Tuple class, treat it as an ordinary type (don't skip name) Added a unit test for Tupple class declaration Added skip of not public interfaces Closes #206
2018-04-18bump version to 5.6.4Joel Martinez
2018-04-18Fixed issue causing single argument FrameworkAlternate members to miss param ↵Joel Martinez
entries. Fixes #222
2018-04-18cleanup now warns on unexpected xml instead of crashingJoel Martinez
2018-04-09bump to 5.6.3Joel Martinez
2018-04-09Improved matching of xml elements to APIs.Joel Martinez
Some scenarios, depending on which order an API with an alternate parameter name was processed, would result in a failed match between the MethodDefinition and XmlElement. Fixes #222
2018-03-30bump to 5.6.2Joel Martinez
2018-03-30mdoc: default values now filtered for special chars.Joel Martinez
Resolves #220
2018-03-28bump to 5.6.1Joel Martinez
2018-03-28fx index files now reads correct namespace for nested types.Joel Martinez
Closes #218
2018-03-20version bump to 5.6mdoc-5.6Joel Martinez
2018-03-20mdoc: disables 'zip 64' when assembling.Joel Martinez
Resolves #215
2018-03-20mdoc: resolver now searches in all reference subdirectories.Joel Martinez
Also, removes the 'stackoverflow detection', which is mitigated by the recent metadata resolver.
2018-03-20mdoc: improved error handling in c++ formatter.Joel Martinez
Related to #208
2018-03-20mdoc: parameters and member signatures now use FrameworkAlternate when differentJoel Martinez
Resolves #116
2018-03-07mdoc: minor change to resolver conditionJoel Martinez
2018-03-07bump to 5.5.0.1Joel Martinez
2018-03-07mdoc: added metadata resolver.Joel Martinez
new metadata resolver uses the type being resolved to winnow down the list of assemblies, in case of exported types, in order to find the final destination of an assembly
2018-03-07mdoc: improves stability and error handling of c++ formattersJoel Martinez
2018-03-07mdoc: StackOverflow detection.Joel Martinez
detects a possible stack overflow scenario, and prints a summary of recently resolved assemblies. This should help you determine what assemblies are causing the SOE
2018-03-07mdoc: adds additional null checking to the c++ formatter.Joel Martinez
Closes #208
2018-01-12version bump to 5.5Joel Martinez
2018-01-12mdoc: some small test changes related to c++ signatures.Joel Martinez
For #132
2018-01-12[mdoc] Support for C++ signatureskatsiaryna_bialiatka
Closes #132
2018-01-10version bump to 5.4.1Joel Martinez
2018-01-10mdoc: AttachedProperty is no longer generated when a field exists with the ↵Joel Martinez
same name. Closes #202
2018-01-10mdoc: VB formatter no longer crashes when an EventName doesn't contain a '.'.Joel Martinez
Closes #198
2018-01-09version bump to 5.4Joel Martinez
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-12-22mdoc: some minor code improvements.Joel Martinez
Better null handling
2017-12-22mdoc: AttachedProperty is no longer generated if a 'real' property exists.Joel Martinez
This is due to the fact that the DocID would be duplicated. Closes #193
2017-12-16version bump to 5.3.5.3Joel Martinez
2017-12-16mdoc: Adds support for attached events and properties to the vb formatter.Joel Martinez
Closes #190
2017-12-16version bump to 5.3.5.2Joel Martinez
2017-12-16mdoc: mdoc's resolver will now prefer supplied dependencies over installed ↵Joel Martinez
libraries for assemblies with a 'zero' version
2017-12-16mdoc: framework type entry now supports attached events and properties. ↵Joel Martinez
Closes #188