From fd9457955c83e8ae6122c77b1dd79af9cdd687b2 Mon Sep 17 00:00:00 2001 From: Tom Schmiedlechner Date: Tue, 12 May 2020 11:21:42 +0200 Subject: [PATCH 1/4] Fixed dead link --- doc/appendix-at-rksv/appendix-at-rksv.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/appendix-at-rksv/appendix-at-rksv.md b/doc/appendix-at-rksv/appendix-at-rksv.md index 34852c85..a2186488 100644 --- a/doc/appendix-at-rksv/appendix-at-rksv.md +++ b/doc/appendix-at-rksv/appendix-at-rksv.md @@ -8,6 +8,6 @@ The links to regulations and further information, can be found at: Further literature can be found at: - +https://www.lindeverlag.at/onlineprodukt/swk-spezial-registrierkassen-und-belegerteilungspflicht-1378 -Ritz/Koran/Kutschera, SWK-Spezial Registrierkassen- und Belegerteilungspflicht, 1. Auflage 2016, Linde Verlag Wien. ISBN: 9783707333763 \ No newline at end of file +Ritz/Koran/Kutschera, SWK-Spezial Registrierkassen- und Belegerteilungspflicht, 1. Auflage 2016, Linde Verlag Wien. ISBN: 9783707333763 From c2516ff271123a65b978c5c1e3f3fa8b13f6014f Mon Sep 17 00:00:00 2001 From: Tom Schmiedlechner Date: Tue, 12 May 2020 11:40:48 +0200 Subject: [PATCH 2/4] Publish logs before documentation --- azure-pipelines.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c6fcfbe4..5b5eb2d7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -57,14 +57,13 @@ steps: Start-Process docfx -Wait -RedirectStandardError $(Build.ArtifactStagingDirectory)/docfx-err.log -RedirectStandardOutput $(Build.ArtifactStagingDirectory)/docfx-out.log displayName: Run docfx -- task: PublishBuildArtifacts@1 - displayName: 'Publish Artifact: documentation' - inputs: - PathtoPublish: '_site_pdf/' - ArtifactName: documentation - - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: logs' inputs: ArtifactName: logs +- task: PublishBuildArtifacts@1 + displayName: 'Publish Artifact: documentation' + inputs: + PathtoPublish: '_site_pdf/' + ArtifactName: documentation From c975ac97f1a71bde54d1ee3327f01823565ccf9d Mon Sep 17 00:00:00 2001 From: Tom Schmiedlechner Date: Tue, 12 May 2020 11:57:43 +0200 Subject: [PATCH 3/4] Only run PDF build --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5b5eb2d7..267e296d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -54,7 +54,7 @@ steps: filePath: 'set-chapter-numbers.ps1' - powershell: | - Start-Process docfx -Wait -RedirectStandardError $(Build.ArtifactStagingDirectory)/docfx-err.log -RedirectStandardOutput $(Build.ArtifactStagingDirectory)/docfx-out.log + Start-Process docfx -ArgumentList "pdf" -Wait -RedirectStandardError $(Build.ArtifactStagingDirectory)/docfx-err.log -RedirectStandardOutput $(Build.ArtifactStagingDirectory)/docfx-out.log displayName: Run docfx - task: PublishBuildArtifacts@1 From 35e7828675103e0f7202e5aa2c41e3c9d9da6fea Mon Sep 17 00:00:00 2001 From: Tom Schmiedlechner Date: Tue, 12 May 2020 12:16:36 +0200 Subject: [PATCH 4/4] Fix version of PlantUml plugin --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 267e296d..a56d85dd 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,7 +46,7 @@ steps: # Specific version can be removed as soon as 0.12.6 is released choco install wkhtmltopdf --version 0.12.4.20170325 --allow-downgrade -y choco install docfx --version 2.41 -y - nuget install DocFx.Plugins.PlantUml -ExcludeVersion -OutputDirectory . + nuget install DocFx.Plugins.PlantUml -Version "1.1.19" -ExcludeVersion -OutputDirectory . displayName: 'Install prerequisites' - task: PowerShell@2