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
2022-01-09Build improvements (#591)Sandy Armstrong
* HtmlGenerator: Load converters lazily This is a workaround so that .NET 6 apps can use the .NET FW build of monodoc.dll without worrying about TypeInitializationExceptions for converters they don't use. * Fix netstandard2.0 compatibility * Replace SharpZipLib submodule with package reference Remove mdoc/packages.config as well. * Bump Lucene.Net.Light to latest version to support NetStandard * monodoc: Change to SDK-style project * monodoc: Move to netstandard2.0 * Replace all packages.config with PackageReference Bump mdoc.Test.FSharp.fsproj to .NET 4.7.1 to fix issues using System.ValueTuple. * Adjust to mdoc.Test.FSharp.fsproj bump to v4.7.1 * mdoc.Test.FSharp.fsproj: Convert to SDK-style Fixes errors building in VS2022. * mdoc.Test.csproj: Update to SDK-style too * mdoc.Test.csproj no longer needs a direct FSharp.Core reference * mdoc.Test.FSharp.fsproj: Fix FSharp.Core reference https://github.com/dotnet/fsharp/blob/main/docs/fsharp-core-notes.md#how-to-explicitly-reference-fsharpcore * mdoc.Test.csproj: Restore manual WPF reference * Use AppendTargetFrameworkToOutputPath to avoid touching Makefiles * Update en.expected-fsharp/index.xml
2019-01-08remove solution section according to commentTianqi Zhang
2019-01-08more UT and fix code accordinglyTianqi Zhang
2019-01-08Fix MemberSignatures for ref returns and ref readonly returnsTianqi Zhang
2018-06-18Removing test-only projects from the main solution.Joel Martinez
They don't build on VSTS mac CI agents
2018-03-20mdoc: parameters and member signatures now use FrameworkAlternate when differentJoel Martinez
Resolves #116
2018-01-12[mdoc] Support for C++ signatureskatsiaryna_bialiatka
Closes #132
2017-11-30mdoc: Support for F# signaturesMikhail Melnikov
Added F# signatures and usage formatter Added unit and integration tests Closes #108
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-04-22Simplifies build setupMarek Safar
2017-03-27mdoc: switched configuration to anycpu.Joel Martinez
Resolves #49. Additionally, enabled optimizations in release mode.
2017-02-03New top level solution, makefile targets, and submodule dependencies.Joel Martinez
You can `make prepare all check` to compile and run unit tests. Additionally, you can open `apidoctools.sln` in Visual Studio to develop and debug. _Please Note:_ You will have to `make prepare all CONFIGURATION=Debug` for VS to work, as this compiles external dependencies, and copies them to the `bin/Debug` folder, where VS will be expecting them.