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:
⚠️
powershell_heavy
⚠️
windows_first
⚠️
missing_linux_example
Summary:
The documentation demonstrates a Windows bias by providing installation instructions only for the .NET SDK via the Visual Studio NuGet Package Manager Console (a Windows/PowerShell-centric tool), omitting any Linux or cross-platform installation guidance. All code examples are in C# and assume a Windows development environment, with no mention of Linux-compatible workflows or tools. There is no reference to using the SDK from Linux, nor are there CLI or alternative installation instructions for non-Windows users.
Recommendations:
- Add instructions for installing the NuGet package using the dotnet CLI (e.g., 'dotnet add package Microsoft.Phoenix.Client'), which works on Linux, macOS, and Windows.
- Explicitly mention that the SDK and examples are cross-platform if applicable, and provide any prerequisites for Linux/macOS users (such as .NET SDK installation).
- Include example commands for Linux/macOS environments, such as using the terminal/bash to install the SDK.
- Clarify any differences or additional steps required for Linux users (e.g., authentication, environment variables, or file paths).
- Consider providing at least one example of running the sample code on Linux (e.g., using VS Code or the dotnet CLI).
Create pull request