We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a2b7b commit 98caa35Copy full SHA for 98caa35
1 file changed
.azure-devops/azure-pipelines.yml
@@ -29,8 +29,8 @@ steps:
29
script: |
30
$sourceDir = "BuildAccdeExample\source"
31
$targetDir = "bin"
32
- compile: "true"
33
- app-config: "BuildAccdeExample/deployment/Application-Config.json"
+ $compile: "true"
+ $app-config: "BuildAccdeExample/deployment/Application-Config.json"
34
$vcsUrl = "https://api.github.com/repos/josef-poetzl/msaccess-vcs-addin/releases/latest"
35
36
$scriptPath = "$(Build.SourcesDirectory)\msaccess-vcs-build\Build.ps1"
@@ -41,7 +41,7 @@ steps:
41
exit 1
42
}
43
44
- & $scriptPath -SourceDir $sourceDir -TargetDir $targetDir -Compile $compile -vcsUrl $vcsUrl
+ & $scriptPath -SourceDir $sourceDir -TargetDir $targetDir -Compile $compile -AppConfigFile "$app-config" -vcsUrl $vcsUrl
45
46
- task: PublishBuildArtifacts@1
47
displayName: 'Upload Build Artifact'
0 commit comments