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
⚠️ missing_linux_example
⚠️ windows_tools
⚠️ powershell_heavy
Summary:
The documentation demonstrates a Windows bias in several ways: deployment examples and templates are primarily focused on ASP.NET (a Windows-centric technology), and the only explicit agent pool example for Web Deploy uses 'windows-latest'. The FAQ and troubleshooting sections reinforce that Web Deploy is only supported on Windows agents, without offering Linux alternatives or workarounds. There are no PowerShell scripts, but the overall pattern and tool selection (Web Deploy, IIS references) are Windows-centric. Linux deployment scenarios are not given equal prominence or detailed examples.
Recommendations:
  • Provide parallel examples for Linux-based deployments, especially for non-.NET stacks (Node.js, Python, Java).
  • Explicitly mention and demonstrate how to use Linux agents for all supported deployment types, including any limitations.
  • Where a feature is Windows-only (e.g., Web Deploy), offer alternative Linux-compatible deployment methods and document them with examples.
  • Balance the initial examples and templates to include at least one Linux-first scenario (e.g., Node.js on Linux App Service).
  • Clarify in the prerequisites and FAQ which features are cross-platform and which are Windows-specific, and link to Linux guidance where appropriate.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-09-16 00:00 #113 completed ❌ Biased
2025-09-15 00:00 #112 completed ❌ Biased
2025-09-14 00:00 #111 completed ✅ Clean
2025-09-13 00:00 #110 completed ✅ Clean
2025-09-12 00:00 #109 completed ✅ Clean
2025-09-11 00:00 #108 completed ✅ Clean
2025-09-10 00:00 #107 completed ✅ Clean
2025-09-09 00:00 #106 completed ✅ Clean
2025-09-08 00:00 #105 completed ❌ Biased
2025-09-07 00:00 #104 completed ❌ Biased
2025-09-06 00:00 #103 completed ❌ Biased
2025-09-05 00:00 #102 completed ❌ Biased
2025-09-04 00:00 #101 completed ❌ Biased
2025-09-03 00:00 #100 completed ✅ Clean
2025-09-02 00:00 #99 in_progress ❌ Biased
2025-08-15 00:01 #81 in_progress ❌ Biased
2025-07-13 21:37 #48 completed ✅ Clean
2025-07-13 21:25 #47 cancelled ✅ Clean
2025-07-13 20:48 #44 cancelled ❌ Biased
2025-07-09 13:09 #3 cancelled ✅ Clean
2025-07-08 04:23 #2 cancelled ❌ Biased

Flagged Code Snippets

pool: vmImage: windows-latest
trigger: - main pool: vmImage: windows-latest variables: buildConfiguration: 'Release' steps: - task: DotNetCoreCLI@2 inputs: command: 'publish' publishWebProjects: true arguments: '--configuration $(buildConfiguration)' zipAfterPublish: true - task: AzureRmWebAppDeployment@4 inputs: ConnectionType: 'AzureRM' azureSubscription: '<service-connection-name>' appType: 'webApp' WebAppName: '<app-name>' packageForLinux: '$(System.DefaultWorkingDirectory)/**/*.zip' enableCustomDeployment: true DeploymentType: 'webDeploy'