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
⚠️
missing_linux_example
Summary:
The documentation demonstrates a Windows bias by providing only Windows-specific instructions for setting environment variables (Windows Command Prompt and PowerShell), referencing Visual Studio exclusively as the development environment, and omitting Linux/macOS equivalents for key steps such as environment variable setup and project creation. There are no Bash or cross-platform CLI instructions, and the workflow assumes a Windows-centric toolchain.
Recommendations:
- Add instructions for setting environment variables on Linux/macOS using Bash (e.g., export ConnectionString=...).
- Include cross-platform .NET CLI commands (e.g., dotnet new console) for project creation, in addition to Visual Studio steps.
- Mention and provide examples for using editors and IDEs available on Linux/macOS (e.g., VS Code, JetBrains Rider).
- Ensure all code and configuration steps are clearly marked as cross-platform where applicable, and explicitly state any Windows-only requirements.
- Reorder or parallelize instructions so that Windows and Linux/macOS steps are presented with equal prominence.
Create pull request