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
⚠️
powershell_heavy
Summary:
The documentation demonstrates a Windows-first bias. Visual Studio (Windows-only) is the only IDE mentioned for development, and all project creation steps assume a Windows GUI workflow. Environment variable setup instructions list Windows Command Prompt and PowerShell before Linux/macOS, and restarting Visual Studio is required, which is not cross-platform. There are no instructions for developing or running the sample on Linux (e.g., with Mono), and no mention of cross-platform editors like VS Code.
Recommendations:
- Include instructions for setting up and running the application on Linux using Mono or .NET Framework alternatives, or clarify that the tutorial is Windows-only if that is the case.
- Mention cross-platform editors such as Visual Studio Code and provide CLI-based project creation steps where possible.
- Present environment variable setup instructions for Windows, Linux, and macOS in parallel, not with Windows first.
- If Visual Studio is required, explicitly state that the tutorial targets Windows and suggest alternatives for Linux users.
- Add notes or links for Linux/macOS users regarding any limitations or alternative approaches.
Create pull request
Flagged Code Snippets
setx Endpoint "<endpoint-of-your-app-configuration-store>"
$Env:Endpoint = "<endpoint-of-your-app-configuration-store>"
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebFormApp.Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Azure App Configuration Web Forms Demo</title>
</head>
<body id="body" runat="server">
<form id="form1" runat="server">
<div style="text-align: center">
<asp:Label ID="message" runat="server" />
</div>
</form>
</body>
</html>
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
$Env:ConnectionString = "<connection-string-of-your-app-configuration-store>"