Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/win-acme/win-acme
Browse files Browse the repository at this point in the history
  • Loading branch information
WouterTinus committed Feb 27, 2024
2 parents 1b62233 + 7fbf0a7 commit b75ee15
Show file tree
Hide file tree
Showing 22 changed files with 4,693 additions and 2,307 deletions.
3 changes: 2 additions & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: 2.2.7.{build}
version: 2.2.8.{build}
image: Visual Studio 2022
platform: Any CPU
shallow_clone: true
Expand Down Expand Up @@ -29,6 +29,7 @@ build_script:
- cmd: dotnet publish ./src/main/wacs.csproj -c "ReleaseTrimmed" -r win-arm64 --self-contained /p:warninglevel=0
- cmd: dotnet publish ./src/plugin.store.keyvault/wacs.store.keyvault.csproj -c Release
- cmd: dotnet publish ./src/plugin.store.userstore/wacs.store.userstore.csproj -c "Release"
- cmd: dotnet publish ./src/plugin.validation.dns.aliyun/wacs.validation.dns.aliyun.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.azure/wacs.validation.dns.azure.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.cloudflare/wacs.validation.dns.cloudflare.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.digitalocean/wacs.validation.dns.digitalocean.csproj -c Release
Expand Down
1 change: 1 addition & 0 deletions build/build.ps1
Expand Up @@ -36,6 +36,7 @@ foreach ($release in @("Release", "ReleaseTrimmed")) {
# Build plugins
& dotnet publish $RepoRoot\src\plugin.store.keyvault\wacs.store.keyvault.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.store.userstore\wacs.store.userstore.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.validation.dns.aliyun\wacs.validation.dns.aliyun.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.validation.dns.azure\wacs.validation.dns.azure.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.validation.dns.cloudflare\wacs.validation.dns.cloudflare.csproj -c "Release"
& dotnet publish $RepoRoot\src\plugin.validation.dns.digitalocean\wacs.validation.dns.digitalocean.csproj -c "Release"
Expand Down
18 changes: 18 additions & 0 deletions build/create-artifacts.ps1
Expand Up @@ -143,6 +143,19 @@ PluginRelease plugin.store.keyvault @(
PluginRelease plugin.store.userstore @(
"PKISharp.WACS.Plugins.StorePlugins.UserStore.dll"
)
PluginRelease plugin.validation.dns.aliyun @(
"AlibabaCloud.EndpointUtil.dll",
"AlibabaCloud.GatewaySpi.dll",
"AlibabaCloud.OpenApiClient.dll",
"AlibabaCloud.OpenApiUtil.dll",
"AlibabaCloud.SDK.Alidns20150109.dll",
"AlibabaCloud.TeaUtil.dll",
"AlibabaCloud.TeaXML.dll",
"Aliyun.Credentials.dll",
"Newtonsoft.Json.dll",
"Tea.dll",
"PKISharp.WACS.Plugins.ValidationPlugins.ALiYun.dll"
)
PluginRelease plugin.validation.dns.azure @(
"Azure.Core.dll",
"Azure.Identity.dll",
Expand Down Expand Up @@ -216,6 +229,11 @@ PluginRelease plugin.validation.dns.route53 @(
PluginRelease plugin.validation.dns.simply @(
"PKISharp.WACS.Plugins.ValidationPlugins.Simply.dll"
)
PluginRelease plugin.validation.dns.tencent @(
"Newtonsoft.Json.dll",
"TencentCloudCommon.dll",
"PKISharp.WACS.Plugins.ValidationPlugins.Tencent.dll"
)
PluginRelease plugin.validation.dns.transip @(
"Newtonsoft.Json.dll",
"PKISharp.WACS.Plugins.ValidationPlugins.TransIp.dll"
Expand Down

0 comments on commit b75ee15

Please sign in to comment.