Skip to content

Commit

Permalink
Build scripts for HTTP REST plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoskirchner committed Jun 25, 2021
1 parent 45e53eb commit 3e1caef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ build_script:
- cmd: dotnet publish ./src/plugin.validation.dns.godaddy/wacs.validation.dns.godaddy.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.googledns/wacs.validation.dns.googledns.csproj -c Release
- cmd: dotnet publish ./src/plugin.store.keyvault/wacs.store.keyvault.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.http.rest/wacs.validation.http.rest.csproj -c Release
test_script:
- cmd: cd %APPVEYOR_BUILD_FOLDER%/src/main.test/
- cmd: nuget install Appveyor.TestLogger -Version 2.0.0
Expand Down
1 change: 1 addition & 0 deletions build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ $BuildFolder = Join-Path -Path $RepoRoot "build"
& dotnet publish $RepoRoot\src\plugin.validation.dns.godaddy\wacs.validation.dns.godaddy.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.validation.dns.googledns\wacs.validation.dns.googledns.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.store.keyvault\wacs.store.keyvault.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.validation.http.rest\wacs.validation.http.rest.csproj -c "Release"

if (-not $?)
{
Expand Down
3 changes: 3 additions & 0 deletions build/create-artifacts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ PluginRelease plugin.store.keyvault @(
"Microsoft.Bcl.AsyncInterfaces.dll",
"Microsoft.Rest.ClientRuntime.dll"
)
PluginRelease plugin.validation.http.rest @(
"PKISharp.WACS.Plugins.ValidationPlugins.Rest.dll"
)

"Created artifacts:"
dir $Out

0 comments on commit 3e1caef

Please sign in to comment.