You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This recipe requires Playwright MCP to be installed and available:
139
+
140
+
```bash
141
+
npm install -g @playwright/mcp
142
+
```
143
+
144
+
Or let Node Package Manager install it on-demand. The recipe will attempt to launch `npx @playwright/mcp` automatically. Run the recipe as normal:
145
+
146
+
```bash
147
+
dotnet run accessibility-report.cs
148
+
```
149
+
150
+
The recipe will prompt you for a URL to analyze and generate an accessibility report.
151
+
</details>
152
+
153
+
<details>
154
+
<summary><strong>ℹ️ PR Visualization</strong> — Requires GitHub API access</summary>
155
+
156
+
This recipe requires:
157
+
158
+
- Access to a GitHub repository (public or private, with appropriate credentials)
159
+
-`gh` CLI tool installed and authenticated: https://cli.github.com/
160
+
161
+
Run with a repository argument:
162
+
163
+
```bash
164
+
dotnet run pr-visualization.cs -- --repo owner/repo-name
165
+
```
166
+
167
+
Example:
168
+
169
+
```bash
170
+
dotnet run pr-visualization.cs -- --repo github/copilot-sdk
171
+
```
172
+
173
+
**Note:** GitHub API requests are rate-limited. Large repositories or frequent runs may hit rate limits. See [GitHub API rate limiting](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api) for details.
174
+
</details>
175
+
43
176
## File-Based Apps
44
177
45
178
These examples use .NET's file-based app feature, which allows single-file C# programs to:
0 commit comments