About This Page
This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.
Bias Analysis
Bias Types:
⚠️
windows_first
⚠️
powershell_heavy
Summary:
The documentation provides environment variable setup instructions for Windows Command Prompt and PowerShell before macOS/Linux, and includes both Windows and Linux/macOS examples. However, Windows-specific tools (setx, PowerShell) are always mentioned first, which may subtly prioritize Windows workflows. There are no missing Linux examples, but the ordering and emphasis could be improved for parity.
Recommendations:
- Present environment variable instructions in a platform-neutral order, or alternate which platform appears first.
- Consider grouping all OS instructions together in a table or tabbed format to avoid implicit prioritization.
- Explicitly state that all .NET CLI commands work identically on Windows, Linux, and macOS to reinforce cross-platform parity.
- Where possible, avoid Windows-specific tools (like setx) as the default, or provide a brief explanation of their Linux/macOS equivalents.
- Ensure screenshots and terminal output are shown from both Windows and Linux/macOS terminals, or use a neutral terminal style.
Create pull request
Flagged Code Snippets
setx Endpoint "<endpoint-of-your-app-configuration-store>"
$Env:ConnectionString = "<connection-string-of-your-app-configuration-store>"
$Env:Endpoint = "<endpoint-of-your-app-configuration-store>"
setx ConnectionString "<connection-string-of-your-app-configuration-store>"