diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b56034fb..7e782785 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -35,7 +35,7 @@ stages: - powershell: ./build.ps1 -ci displayName: Invoke build.ps1 env: - KEYVAULT_CLIENT_SECRET: kv-access-token + KEYVAULT_CLIENT_SECRET: $(kv-access-token) - powershell: .\docs\generate.ps1 -Verbose -NoBuild displayName: Compile documentation - task: PublishTestResults@2 diff --git a/src/CommandLineUtils/releasenotes.props b/src/CommandLineUtils/releasenotes.props index 6e426498..f7e23d06 100644 --- a/src/CommandLineUtils/releasenotes.props +++ b/src/CommandLineUtils/releasenotes.props @@ -1,24 +1,21 @@ -Features: +Features and bug fixes by some awesome contributors: * @IanG: Attributes for files and directories that must not exist - -Bug fixes by contributors (thanks!): - * @ejball: ArgumentEscaper should escape empty string * @vpkopylov: Use Pager for help text option only works on top-level help * @vpkopylov: Add check for subcommand cycle -* @kyle-rader:Multi-line option descriptions do not indent correctly +* @kyle-rader: Multi-line option descriptions do not indent correctly Other things I fixed: * Support C# 8.0 and nullable reference types * Add async methods to CommandLineApplication -* make `CommandLineApplication.ExecuteAsync` actually asynchronous -* add async methods that accept cancellation tokens +* Make `CommandLineApplication.ExecuteAsync` actually asynchronous +* Add async methods that accept cancellation tokens * Handle CTRL+C by default -* support calling CommandLineApplication.Execute multiple times +* Support calling CommandLineApplication.Execute multiple times