You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your feedback and contributions are greatly appreciated, and improve the quality of mdoc, monodoc, and related tools. Please read the following contribution guidelines to ensure a quick and timely review and acceptance of your patches.
4
+
5
+
## Bug Reports and Feature Requests
6
+
7
+
We love bug reports and feature requests! It is through feedback from our wonderful customers that we know how to prioritize our time. Please file issues and requests on [github issues](https://github.com/mono/api-doc-tools/issues/new).
8
+
9
+
For problems, please try to include a reproducible example … ideally in the form of an assembly (or compilable source code), and related script to reproduce the issue.
10
+
11
+
For feature requests, please include all relevant details including input, output, and ideal file formats.
12
+
13
+
## Contribution Workflow
14
+
15
+
When contributing bug fixes and enhancements, please follow this workflow and guidelines.
16
+
17
+
### Coding Standards
18
+
19
+
This project is currently in transition. Historically, it has used the [Mono coding guidelines](http://www.mono-project.com/community/contributing/coding-guidelines/); and indeed, most of the code is currently still using this.
20
+
21
+
However, starting with the `MDocUpdater` class and related entities, we are changing to a new coding standard, based on the default formatting options available in _Visual Studio_ and _Visual Studio for Mac_. This is meant to simplify contributions, so that the IDE does not work against you without changes to the default format settings.
22
+
23
+
Additionally, many areas of the code contain multiple classes in the same file. While there’s nothing wrong in general with this approach, going forward we will maintain each class in a separate `.cs` file, and organize functionality into better namespaces.
24
+
25
+
If you are working in an area of the code that has transitioned to the new coding standard, please use that. If you are working with code that is still using the mono coding guidelines, and the change is small, just stick the existing format … otherwise, file a separate GitHub issue to request that the target code be reformatted. I would like to keep those formatting changes in a standalone commit (ie. no feature/functionality changes).
26
+
27
+
### Commits
28
+
29
+
This project tries to avoid chatty in-progress commits that are common during development. Once you’ve completed your development and are ready to move to the next stage of the contribution workflow, collapse your changes into as few feature-scoped commits as possible. Ideally if possible, every commit should pass all unit tests and be standalone.
30
+
31
+
You can do so either by using an interactive rebase of your branch if you need multiple commits, or simply doing a soft reset `git reset origin/master —soft` … which will stage all of your changes and let you create a new single commit that contains all changes.
32
+
33
+
### Tests
34
+
35
+
Your commit should introduce no regressions. You can make sure to run all unit tests locally by using the [instructions here](https://github.com/mono/api-doc-tools#cli).
36
+
37
+
### Pull Request
38
+
39
+
Create a fork against the [api-doc-tools](https://github.com/mono/api-doc-tools/pulls) repository. As mentioned previously, all tests should pass, and the code will be reviewed, discussed, and merged from there. Please be ready to address any issues brought up during code review.
40
+
41
+
## Legal
42
+
43
+
This software is licensed under [The MIT License](LICENSE.md).
Copy file name to clipboardexpand all lines: README.md
+49-4
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,20 @@ This repository contains the source for Mono's [documentation toolchain](http://
4
4
5
5
## Compiling
6
6
7
+
### Dependencies
8
+
9
+
This repository uses submodules, so firstly, you have several options:
10
+
11
+
- You can include all submodules when you initially clone: `git clone --recursive https://github.com/mono/api-doc-tools.git`
12
+
- If you already have it local, you can use `git submodule update --init --recursive`
13
+
- If you have all CLI dependencies (see below), you can `make prepare`
14
+
15
+
### Visual Studio
16
+
17
+
On windows, you can build and compile [`apidoctools.sln`](apidoctools.sln). And you can run unit tests if you have NUnit installed. If you use [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/), you can use its built-in support for NUnit tests to also run tests.
18
+
7
19
### CLI
8
-
If you've got `make` installed, you can run `make prepare all check`. The available targets are:
20
+
If you've got `make`and `mono`installed, you can run `make prepare all check` to do a release build and run the full test suite (which for mdoc includes more than just the nunit tests). The available targets are:
9
21
10
22
-`prepare`: initializes the submodules, and restores the nuget dependency of NUnit
11
23
-`all`: compiles everything
@@ -17,6 +29,39 @@ You can also control some parameters from the command line:
17
29
18
30
If you want to compile in debug mode: `make all CONFIGURATION=Debug`
19
31
20
-
### Visual Studio
21
-
Once you run `make prepare all` at least once (to restore submodules), you can open the solution in
22
-
_Visual Studio_ to compile and debug.
32
+
## Troubleshooting
33
+
34
+
### WSL
35
+
36
+
On the windows subsystem for linux, there is unfortunately a defect that causes difficulty making https calls, which in turn doesn't allow the `prepare` make target to complete (nuget fails). You will see an error that says:
37
+
38
+
```
39
+
Unable to load the service index for source https://api.nuget.org/v3/index.json.
40
+
An error occurred while sending the request
41
+
Error: ConnectFailure (Value does not fall within the expected range.)
42
+
Value does not fall within the expected range.
43
+
```
44
+
45
+
[this mono issue](https://github.com/mono/mono/pull/5003) Seems to indicate that the issue is resolved in newer insider builds of WSL.
46
+
47
+
### Linux
48
+
49
+
The following script will prepare, clone, and run a full build with tests of `mdoc` on an unbuntu docker container.
0 commit comments