This commit is contained in:
OCram85 2020-10-01 14:26:51 +02:00
parent e5ba3c8e1e
commit 73a0829a63
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ cache:
skip_tags: true
image: Visual Studio 2017
image: Visual Studio 2019
# Install pester module and init the Appveyor support.

View File

@ -49,7 +49,7 @@ Function Invoke-AppVeyorBumpVersion() {
Write-Host "Listing Env Vars for debugging:" -ForegroundColor Black -BackgroundColor Yellow
# Filter Results to prevent exposing secure vars.
Get-ChildItem -Path "Env:*" | Where-Object { $_.name -notmatch "(NuGetToken|CoverallsToken)" } | Sort-Object -Property Name | Format-Table
Get-ChildItem -Path "Env:*" | Where-Object { $_.name -notmatch "(NuGetToken|CoverallsToken|CodeCovToken)" } | Sort-Object -Property Name | Format-Table
Try {
$ModManifest = Get-Content -Path (".\src\{0}.psd1" -f $CALLSIGN)