Skip to content

Commit 98caa35

Browse files
committed
fix azure app config
1 parent e3a2b7b commit 98caa35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.azure-devops/azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ steps:
2929
script: |
3030
$sourceDir = "BuildAccdeExample\source"
3131
$targetDir = "bin"
32-
compile: "true"
33-
app-config: "BuildAccdeExample/deployment/Application-Config.json"
32+
$compile: "true"
33+
$app-config: "BuildAccdeExample/deployment/Application-Config.json"
3434
$vcsUrl = "https://api.github.com/repos/josef-poetzl/msaccess-vcs-addin/releases/latest"
3535
3636
$scriptPath = "$(Build.SourcesDirectory)\msaccess-vcs-build\Build.ps1"
@@ -41,7 +41,7 @@ steps:
4141
exit 1
4242
}
4343
44-
& $scriptPath -SourceDir $sourceDir -TargetDir $targetDir -Compile $compile -vcsUrl $vcsUrl
44+
& $scriptPath -SourceDir $sourceDir -TargetDir $targetDir -Compile $compile -AppConfigFile "$app-config" -vcsUrl $vcsUrl
4545
4646
- task: PublishBuildArtifacts@1
4747
displayName: 'Upload Build Artifact'

0 commit comments

Comments
 (0)