This page contains Windows bias

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
⚠️ windows_tools
Summary:
The documentation demonstrates a Windows bias by exclusively referencing Windows tools (Visual Studio, Windows command prompt, PowerShell) and providing only Windows-specific instructions for setting environment variables and running the application. There are no Linux or cross-platform alternatives mentioned for these steps, and the instructions assume the use of Windows throughout the quickstart.
Recommendations:
  • Add equivalent instructions for Linux and macOS users, such as using the 'export' command in bash/zsh to set environment variables.
  • Mention and provide examples for using cross-platform editors like VS Code or the 'dotnet' CLI for project creation and management.
  • Reorder or parallelize instructions so that Windows and Linux/macOS steps are presented equally, rather than Windows-first.
  • Clarify that the .NET SDK and Azure App Configuration are cross-platform, and provide guidance for non-Windows environments.
  • Include screenshots or terminal output examples from Linux/macOS where appropriate.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-07-12 23:44 #41 in_progress ❌ Biased
2025-07-12 00:58 #8 cancelled ✅ Clean
2025-07-10 05:06 #7 processing ✅ Clean
2025-07-09 23:22 #6 cancelled ✅ Clean

Flagged Code Snippets

setx ConnectionString "<connection-string-of-your-app-configuration-store>"
$Env:ConnectionString = "<connection-string-of-your-app-configuration-store>"