-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Living Documentation | ||
|
||
// TODO: Write explaination | ||
|
||
## Running the sample | ||
|
||
These steps expect the **eShopOnContainers** and **LivingDocumentation** repos to be subdirectories of the location where you execute these commands: | ||
|
||
```plain | ||
| | ||
+-- eShopOnContainers | ||
+-- LivingDocumentation | ||
``` | ||
|
||
1. Install the analyzer as a global tool | ||
|
||
```sh | ||
dotnet tool install --global LivingDocumentation.Analyzer | ||
``` | ||
|
||
2. Make sure you've build the solution you want to document | ||
|
||
```sh | ||
dotnet build eShopOnContainers/eShopOnContainers-ServicesAndWebApps.sln -c Release | ||
``` | ||
|
||
3. Run the analyzer and store the intermediate output | ||
|
||
```sh | ||
livingdoc-analyze --solution eShopOnContainers/eShopOnContainers-ServicesAndWebApps.sln --output analysis.json | ||
``` | ||
|
||
4. Run you project specific renderer | ||
|
||
```sh | ||
dotnet run --project LivingDocumentation\samples\LivingDocumentation.eShopOnContainers -c Release | ||
``` |