|
1 | 1 | Azure Sign Tool |
2 | 2 | =============== |
3 | 3 |
|
4 | | -The below README is based on functionality in `main` which may not be the same as the latest released version of AzureSignTool. For README information about released versions, please see the README for the version's associated tag. The README for the current release can [be found here](https://github.com/vcsjones/AzureSignTool/blob/v6.0.0/README.md). |
| 4 | +The below README is based on functionality in `main` which may not be the same as the latest released version of AzureSignTool. For README information about released versions, please see the README for the version's associated tag. The README for the current release can [be found here](https://github.com/vcsjones/AzureSignTool/blob/v7.0.0/README.md). |
5 | 5 |
|
6 | 6 | Azure Sign Tool is similar to `signtool` in the Windows SDK, with the major difference being that it uses |
7 | 7 | Azure Key Vault for performing the signing process. The usage is like `signtool`, except with a limited set |
@@ -36,18 +36,18 @@ AzureSignTool can be installed in a couple of ways. |
36 | 36 | You can install AzureSignTool from NuGet using |
37 | 37 |
|
38 | 38 | ```powershell |
39 | | -dotnet tool install --global --version 6.0.0 AzureSignTool |
| 39 | +dotnet tool install --global --version 7.0.0 AzureSignTool |
40 | 40 | AzureSignTool.exe |
41 | 41 | ``` |
42 | 42 |
|
43 | | -It is recommended to specify an exact version such as 6.0.0, or a latest major-minor, like 6.0.* so that major versions, which often include a breaking change, are not automatically picked up. |
| 43 | +It is recommended to specify an exact version such as 7.0.0, or a latest major-minor, like 7.0.* so that major versions, which often include a breaking change, are not automatically picked up. |
44 | 44 |
|
45 | 45 | ### Single-file Download |
46 | 46 |
|
47 | | -AzureSignTool provides self-contained executables on the GitHub release. For example, to download the v6.0.0 ARM64 installer: |
| 47 | +AzureSignTool provides self-contained executables on the GitHub release. For example, to download the v7.0.0 ARM64 installer: |
48 | 48 |
|
49 | 49 | ```powershell |
50 | | -Invoke-WebRequest https://github.com/vcsjones/AzureSignTool/releases/download/v6.0.0/AzureSignTool-arm64.exe -OutFile AzureSignTool.exe |
| 50 | +Invoke-WebRequest https://github.com/vcsjones/AzureSignTool/releases/download/v7.0.0/AzureSignTool-arm64.exe -OutFile AzureSignTool.exe |
51 | 51 | .\AzureSignTool.exe |
52 | 52 | ``` |
53 | 53 |
|
@@ -140,7 +140,7 @@ The single-file downloads do not require .NET to be installed on the system at a |
140 | 140 |
|
141 | 141 | * `--quiet` [short: `-q`, required: no]: Do not print output to the log. This parameter does not accept a value and cannot be |
142 | 142 | combine with the `--verbose` option. The exit code of the process can be used to determine success or failure of the sign operation. |
143 | | - |
| 143 | + |
144 | 144 | * `--continue-on-error` [short: `-coe`, required: no]: If multiple files to sign are specified, this flag will cause the signing process to |
145 | 145 | move on to the next file when signing fails. This flag modifies the exit code of the program. See the Exit Codes section for more |
146 | 146 | information. |
|
0 commit comments