From 41ba6d7a9b7c622bb1872010040e9526acb22cc5 Mon Sep 17 00:00:00 2001 From: Ricardo Lucas Martins Date: Thu, 3 Sep 2026 16:19:32 +0100 Subject: [PATCH 1/6] try to fix build to remove redundant nuget package installation --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 5a0db2d..a3c85a1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,6 @@ only_commits: install: - ps: | - Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force Install-Module Pester -RequiredVersion 4.10.1 -Scope CurrentUser -Force Install-Module psake -Scope CurrentUser -Force -RequiredVersion 4.7.4 Install-Module PSScriptAnalyzer -Scope CurrentUser -Force From 30c4478ade478c11c4518cd4a93441fdf5fff168 Mon Sep 17 00:00:00 2001 From: Ricardo Lucas Martins Date: Thu, 3 Sep 2026 16:41:39 +0100 Subject: [PATCH 2/6] dummy commit to re trigger appveyor --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index a3c85a1..314f1a1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,6 +12,7 @@ install: Install-Module PSScriptAnalyzer -Scope CurrentUser -Force Install-Module platyPS -Scope CurrentUser -Force + build_script: - ps: | $testResultsFile = Join-Path $pwd -ChildPath "$PSScriptRoot/TestResults.xml" From 6507ce44ec6d73a1f62ef37ec9759a5df8bae1a2 Mon Sep 17 00:00:00 2001 From: Ricardo Lucas Martins Date: Fri, 4 Sep 2026 11:12:32 +0100 Subject: [PATCH 3/6] make build trigger on changes to the pipeline --- appveyor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 314f1a1..fd96074 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,6 +4,11 @@ only_commits: files: - 'src/' - 'test/' + - appveyor.yml + - build.ps1 + - build.psake.ps1 + - build.settings.ps1 + - ScriptAnalyzerSettings.psd1 install: - ps: | From fd4e8ed94b93d33c8ce42504fe7faba263f6cf2f Mon Sep 17 00:00:00 2001 From: Ricardo Lucas Martins Date: Fri, 4 Sep 2026 11:13:09 +0100 Subject: [PATCH 4/6] dummy commit to change head of yaml file to trigger pipeline --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index fd96074..269a470 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,7 +17,6 @@ install: Install-Module PSScriptAnalyzer -Scope CurrentUser -Force Install-Module platyPS -Scope CurrentUser -Force - build_script: - ps: | $testResultsFile = Join-Path $pwd -ChildPath "$PSScriptRoot/TestResults.xml" From 1eb3c305c181c7884b715e78607e797b3cf5a78d Mon Sep 17 00:00:00 2001 From: Ricardo Lucas Martins Date: Fri, 4 Sep 2026 11:13:54 +0100 Subject: [PATCH 5/6] update gitignore to ignore vscode folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 6d4baeb..827dcb3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .trash/ Release/ _*.Tests.ps1 +.vscode/ From 653d8edf91f7210fa6374778fc0228cfe02c0d37 Mon Sep 17 00:00:00 2001 From: Ricardo Lucas Martins Date: Fri, 4 Sep 2026 11:24:14 +0100 Subject: [PATCH 6/6] dummy trig --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 269a470..b100b66 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,6 +10,7 @@ only_commits: - build.settings.ps1 - ScriptAnalyzerSettings.psd1 + install: - ps: | Install-Module Pester -RequiredVersion 4.10.1 -Scope CurrentUser -Force