Skip to content

Commit f6a51dd

Browse files
authored
Prep for 7.0.0 release (#334)
2 parents 4bd5380 + 83bbf13 commit f6a51dd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Azure Sign Tool
22
===============
33

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).
55

66
Azure Sign Tool is similar to `signtool` in the Windows SDK, with the major difference being that it uses
77
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.
3636
You can install AzureSignTool from NuGet using
3737

3838
```powershell
39-
dotnet tool install --global --version 6.0.0 AzureSignTool
39+
dotnet tool install --global --version 7.0.0 AzureSignTool
4040
AzureSignTool.exe
4141
```
4242

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.
4444

4545
### Single-file Download
4646

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:
4848

4949
```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
5151
.\AzureSignTool.exe
5252
```
5353

@@ -140,7 +140,7 @@ The single-file downloads do not require .NET to be installed on the system at a
140140

141141
* `--quiet` [short: `-q`, required: no]: Do not print output to the log. This parameter does not accept a value and cannot be
142142
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+
144144
* `--continue-on-error` [short: `-coe`, required: no]: If multiple files to sign are specified, this flag will cause the signing process to
145145
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
146146
information.

0 commit comments

Comments
 (0)