Update config file for mdsnippets 23.0.0

mdsnippets 23.0.0 introduced a breaking change - see https://github.com/SimonCropp/MarkdownSnippets/pull/360 for the motivation, and what edits need to be made.

This PR updates this project for that change.
This commit is contained in:
Clare Macrae 2021-02-07 12:03:48 +00:00
parent 3eade52fc0
commit 77e2451da1
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"ReadOnly": false, "ReadOnly": false,
"TocLevel": 5, "TocLevel": 5,
"Exclude": [ "ExcludeDirectories": [
"cmake-build" "cmake-build"
], ],
"WriteHeader": false, "WriteHeader": false,

View File

@ -19,5 +19,5 @@ import subprocess
os.chdir(catchPath) os.chdir(catchPath)
subprocess.run('dotnet tool update -g MarkdownSnippets.Tool --version 21.2.0', shell=True, check=True) subprocess.run('dotnet tool update -g MarkdownSnippets.Tool --version 23.0.0', shell=True, check=True)
subprocess.run('mdsnippets', shell=True, check=True) subprocess.run('mdsnippets', shell=True, check=True)