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 page demonstrates a Windows bias by providing only Windows-specific instructions and examples. The execution command uses a Windows-style executable (mgCreate.exe) and PowerShell-style line continuations (`), with no mention of Linux or cross-platform equivalents. There are no Linux/macOS-specific instructions or examples for running the application, and the use of .exe implies a Windows environment. Additionally, the clean-up instructions reference deleting folders in a way that is more familiar to Windows users.
Recommendations:
- Provide explicit instructions and examples for running the .NET Core application on Linux and macOS, including using 'dotnet mgCreate.dll' instead of 'mgCreate.exe'.
- Use cross-platform command-line syntax, or provide both Windows (PowerShell/cmd) and Linux/macOS (bash) variants for commands, especially for application execution and directory navigation.
- Avoid Windows-specific line continuation characters (e.g., backtick `) in command examples, or provide bash equivalents (e.g., backslash \) for Linux/macOS.
- Clarify that .NET Core applications are cross-platform and can be run on Windows, Linux, and macOS, and provide any necessary prerequisites or troubleshooting tips for non-Windows environments.
- Update clean-up instructions to include Linux/macOS commands for deleting project folders (e.g., 'rm -rf mgCreate').
Create pull request