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 is generally cross-platform in its environment variable instructions, providing commands for Windows Command Prompt, PowerShell, and macOS/Linux. However, there is a subtle Windows bias: Windows tools (Visual Studio, Command Prompt, PowerShell) are mentioned first and more prominently, and the tutorial is centered around .NET Framework, which is primarily a Windows technology. Linux/macOS commands are included but always listed last. There are no Linux-specific development environment suggestions (e.g., VS Code, JetBrains Rider), and the workflow assumes Visual Studio on Windows.
Recommendations:
- Present environment variable commands in a neutral or rotating order (not always Windows first).
- Explicitly mention and provide guidance for cross-platform .NET development environments (e.g., Visual Studio Code, JetBrains Rider) where possible.
- Clarify that .NET Framework is Windows-only, and provide links or notes for .NET (Core/5+/6+) cross-platform equivalents.
- Where possible, include Linux/macOS screenshots or terminal output, not just Windows Command Prompt/PowerShell.
- Consider a parallel tutorial or notes for .NET (Core/5+/6+) apps that can run natively on Linux/macOS.
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>"