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
⚠️
missing_linux_example
⚠️
windows_tools
Summary:
The documentation demonstrates a Windows bias by referencing Windows-specific UI patterns (e.g., 'Right click', folder navigation), and by omitting any explicit Linux or cross-platform command-line instructions for common developer tasks (such as file creation, package installation, or database access). Tools like Azure Data Studio and SQL query editors are mentioned generically, but no Linux-specific alternatives or CLI-based workflows are provided. There are no PowerShell-specific commands, but the overall workflow assumes a GUI and Windows-centric development environment.
Recommendations:
- Provide equivalent Linux/macOS instructions for tasks such as creating files (e.g., using 'touch' or 'nano' in the terminal) and installing packages (e.g., using 'dotnet add package' CLI).
- Include command-line examples for database access and management (e.g., using Azure CLI, sqlcmd, or Data Studio on Linux).
- Avoid UI instructions that are Windows-specific (such as 'Right click') or supplement them with cross-platform alternatives.
- Explicitly mention that all steps can be performed on Linux and macOS, and provide any necessary prerequisites or caveats.
- Where GUI tools are referenced, note their cross-platform availability or suggest alternatives for Linux users.
Create pull request