File tree 3 files changed +10
-21
lines changed
3 files changed +10
-21
lines changed Original file line number Diff line number Diff line change @@ -9,22 +9,7 @@ An ASP.NET Core markdown-based documentation engine.
9
9
10
10
[ Documentation] ( docs/index.md )
11
11
12
- [ Download ` markdocs-gen ` ] ( https://ci.appveyor.com/api/projects/itgloballlc/markdocs/artifacts/artifacts/markdocs-gen.zip )
13
-
14
- Installing ` markdocs ` command line tool
15
- ---------------------------------------
16
-
17
- Execute command:
18
-
19
- ``` shell
20
- dotnet tool install -g ITGlobal.MarkDocs.CommandLineTool
21
- ```
22
-
23
- Then run:
24
-
25
- ``` shell
26
- markdocs [command]
27
- ```
12
+ [ Command-line tool (and a Docker app)] ( src/markdocs/README.md )
28
13
29
14
License
30
15
-------
Original file line number Diff line number Diff line change @@ -84,11 +84,7 @@ function build-packages() {
84
84
$VERSION = " 0.0.0-dev"
85
85
}
86
86
87
- Get-ChildItem - Filter * .csproj - Path " ./src" - Recurse - File | % {
88
- if ($_.Name -eq " markdocs-site.csproj" ) {
89
- return
90
- }
91
-
87
+ Get-ChildItem - Filter * .csproj - Path " ./src" - Recurse - File | % {
92
88
& dotnet pack -- output $ARTIFACTS -- no- restore - v q / nologo / p:Version= $VERSION / p:Configuration= $CONFIGURATION $_.FullName
93
89
if ($LASTEXITCODE -ne 0 ) {
94
90
Write-Host " 'dotnet pack' exited with $LASTEXITCODE "
Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ Then run:
16
16
markdocs [command]
17
17
```
18
18
19
+ ## Update
20
+
21
+ If markdocs CLI tool is already installed, type the following command to update it:
22
+
23
+ ``` shell
24
+ dotnet tool update -g ITGlobal.MarkDocs.CommandLineTool
25
+ ```
26
+
19
27
## Commands
20
28
21
29
* ` markdocs lint ` - runs a linter over a directory
You can’t perform that action at this time.
0 commit comments