From 77e2451da10b64cb9870c70170a2ae44e4701cdd Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 7 Feb 2021 12:03:48 +0000 Subject: [PATCH] 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. --- mdsnippets.json | 2 +- tools/scripts/updateDocumentSnippets.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mdsnippets.json b/mdsnippets.json index 5a60dadb..d49f7898 100644 --- a/mdsnippets.json +++ b/mdsnippets.json @@ -1,7 +1,7 @@ { "ReadOnly": false, "TocLevel": 5, - "Exclude": [ + "ExcludeDirectories": [ "cmake-build" ], "WriteHeader": false, diff --git a/tools/scripts/updateDocumentSnippets.py b/tools/scripts/updateDocumentSnippets.py index a070eea8..00d9e3b2 100755 --- a/tools/scripts/updateDocumentSnippets.py +++ b/tools/scripts/updateDocumentSnippets.py @@ -19,5 +19,5 @@ import subprocess 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)