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
⚠️
windows_tools
Summary:
The documentation generally provides cross-platform instructions, with shell commands and code samples for C#, JavaScript, Python, and Java. However, in several places, Windows-specific tools (such as 'dir /s /b') are mentioned alongside or before their Linux equivalents ('ls -R'), and the documentation sometimes lists the Windows command first. There is also a reference to the .NET Secret Manager tool, which is specific to .NET Core and more common on Windows, though it is available cross-platform. No PowerShell-specific examples or exclusive Windows-only steps are present, and Linux examples are generally included, but Windows commands are sometimes prioritized or mentioned first.
Recommendations:
- When listing equivalent commands (e.g., 'ls -R' and 'dir /s /b'), present the Linux/Unix command first or give both equal prominence, possibly in a table or side-by-side format.
- Clarify that .NET Secret Manager is available cross-platform, or provide alternative environment variable instructions for Linux/macOS users.
- Where possible, avoid phrases like 'Or call ... when you are using CMD under Windows' and instead use a neutral phrasing such as 'On Windows, use ...; on Linux/macOS, use ...'.
- If referencing Windows tools or patterns, always ensure the Linux/macOS equivalent is provided with equal detail and visibility.
- Consider adding explicit notes or tabs for Linux/macOS setup steps where platform-specific differences exist.
Create pull request
Flagged Code Snippets
mvn compile & mvn package & mvn exec:java -Dexec.mainClass="com.webpubsub.quickstart.App" -Dexec.cleanupDaemonThreads=false
ls -R | dotnet run
# Or call `dir /s /b | dotnet run` when you are using CMD under Windows
ls -R | node stream
# Or call `dir /s /b | node stream` when you are using CMD under Windows
ls -R | python stream.py
# Or call `dir /s /b | python stream.py` when you are using CMD under Windows