diff options
| author | Rob Mensching <rob@firegiant.com> | 2024-04-05 09:51:01 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2024-04-05 12:34:33 -0700 |
| commit | 41e11442b2ca93e444b60213b5ae99dcbab787d8 (patch) | |
| tree | 9c5dd6c3c990179d3d545f335be7bd2459e8b5c7 | |
| parent | 681cf4a9eb6be7e4092c6e5b690773fbd8469e63 (diff) | |
| download | wix-5.0.0.tar.gz wix-5.0.0.tar.bz2 wix-5.0.0.zip | |
WiX Toolset v5.0.0v5.0.0
| -rw-r--r-- | .github/workflows/build.yml | 5 | ||||
| -rw-r--r-- | src/Directory.Build.targets | 2 | ||||
| -rw-r--r-- | src/version.txt | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9cc88dcf..8a320821 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
| @@ -67,7 +67,10 @@ jobs: | |||
| 67 | run: ./src/build_official.cmd | 67 | run: ./src/build_official.cmd |
| 68 | env: | 68 | env: |
| 69 | RuntimeTestsEnabled: true | 69 | RuntimeTestsEnabled: true |
| 70 | SigningVaultUri: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_VAULTURI || '' }} | 70 | SigningKeyVaultUri: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_VAULTURI || '' }} |
| 71 | SigningTenantId: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_TENANTID || '' }} | ||
| 72 | SigningClientId: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_CLIENTID || '' }} | ||
| 73 | SigningClientSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} | ||
| 71 | SigningCertName: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_CERTNAME || '' }} | 74 | SigningCertName: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_CERTNAME || '' }} |
| 72 | 75 | ||
| 73 | - name: Validate test results | 76 | - name: Validate test results |
diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index 47c06a03..0ce90600 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | <PropertyGroup> | 5 | <PropertyGroup> |
| 6 | <SigningToolExe>$(ToolsFolder)\sign.exe</SigningToolExe> | 6 | <SigningToolExe>$(ToolsFolder)\sign.exe</SigningToolExe> |
| 7 | <SigningCommand>code azure-key-vault</SigningCommand> | 7 | <SigningCommand>code azure-key-vault</SigningCommand> |
| 8 | <SigningConfiguration>--description "WiX Toolset" --description-url "https://wixtoolset.org/" --timestamp-url "http://timestamp.digicert.com" --file-list "$(MSBuildThisFileDirectory)signing-empty-file-list.txt" --azure-key-vault-managed-identity true --azure-key-vault-url "$(SigningVaultUri)" --azure-key-vault-certificate "$(SigningCertName)"</SigningConfiguration> | 8 | <SigningConfiguration>--description "WiX Toolset" --description-url "https://wixtoolset.org/" --file-list "$(MSBuildThisFileDirectory)signing-empty-file-list.txt" --azure-key-vault-url $(SigningKeyVaultUri) --azure-key-vault-tenant-id $(SigningTenantId) --azure-key-vault-client-id $(SigningClientId) --azure-key-vault-client-secret $(SigningClientSecret) --azure-key-vault-certificate $(SigningCertName) --timestamp-url "http://timestamp.digicert.com"</SigningConfiguration> |
| 9 | </PropertyGroup> | 9 | </PropertyGroup> |
| 10 | 10 | ||
| 11 | <PropertyGroup Condition=" '$(IsWixTestSupportProject)'=='true' "> | 11 | <PropertyGroup Condition=" '$(IsWixTestSupportProject)'=='true' "> |
diff --git a/src/version.txt b/src/version.txt index 8fc9c109..0062ac97 100644 --- a/src/version.txt +++ b/src/version.txt | |||
| @@ -1 +1 @@ | |||
| 5.0.0-build.{height} | 5.0.0 | ||
