Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTEXT.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The managed type whose `ResolvePath` returns the Payload's `az` executable (`az.
_Avoid_: Az, Azx, AzureCli, WhatsBoxHost, ResolveBinaryPath

**azx**:
The passthrough .NET tool that execs the Payload `az` with the same arguments. Primary human vehicle via `dnx`/`ndnx azx`.
The passthrough .NET tool that execs the Payload `az` with the same arguments. Primary human vehicle via `dnx`/`ndx azx`.
_Avoid_: Azure CLI, az, wrapper with its own Azure verbs

**Execute**:
Expand Down
2 changes: 1 addition & 1 deletion docs/adr/0002-nupkg-version-is-upstream.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Nupkg version is Upstream

`azx.cli` and `azx` use the Azure CLI version (`2.89.1`) so `ndnx azx@2.89.1` is that CLI. The pin is `azure-cli.version`. CI dogfood stays `42.42.*`. Packaging-only republishes of the same CLI use a SemVer label, not a different major.
`azx.cli` and `azx` use the Azure CLI version (`2.89.1`) so `ndx azx@2.89.1` is that CLI. The pin is `azure-cli.version`. CI dogfood stays `42.42.*`. Packaging-only republishes of the same CLI use a SemVer label, not a different major.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ OSMF tier. A single fee covers all of [Devlooped packages](https://www.nuget.org

<!-- https://github.com/devlooped/.github/raw/main/osmf.md -->
<!-- #content -->
Packs the [Azure CLI](https://github.com/Azure/azure-cli) for install-less, portable execution via `ndnx`/`dnx`.
Packs the [Azure CLI](https://github.com/Azure/azure-cli) for install-less, portable execution via `ndx`/`dnx`.

## Usage

```bash
ndnx azx account list
dnx azx account list
ndx azx account list
dnx azx account list

# installed version:
dotnet tool install -g azx #once
Expand Down
2 changes: 1 addition & 1 deletion src/azx/azx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PackageId>azx</PackageId>
<RootNamespace>azx</RootNamespace>
<AssemblyName>azx</AssemblyName>
<Description>Execute the bundled Azure CLI. ndnx azx -- account list.</Description>
<Description>Execute the bundled Azure CLI. ndx azx -- account list.</Description>
<PackAsTool>true</PackAsTool>
<PublishAot>true</PublishAot>
<ToolCommandName>azx</ToolCommandName>
Expand Down
Loading