Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
Adds a comprehensive application model guide to the Aspire documentation, covering concepts, design patterns, and authoring guidance.
- Introduces a Quick Start section with sample code and a Mermaid diagram.
- Provides in-depth explanations of resources, built-in types, interfaces, API patterns, and full examples (Redis, Talking Clock).
- Includes a glossary and reference tables for annotations, events, and value types.
Comments suppressed due to low confidence (4)
docs/specs/appmodel.md:648
- [nitpick] Use '
csharp' for code fences instead of 'C#' to match other examples and standard Markdown conventions.
```C#
docs/specs/appmodel.md:784
- [nitpick] This heading is level 2 inside a subsection; consider using '###' to maintain the nested section hierarchy under 'Referencing Endpoints from Other Resources'.
## EndpointReferenceExpression – accessing endpoint parts
docs/specs/appmodel.md:126
- [nitpick] Resource names differ from the Quick Start section (here using 'backend' vs. 'api'). Consider aligning names across examples for consistency.
var api = builder.AddProject("backend").WithReference(pg);
docs/specs/appmodel.md:1
- [nitpick] This document exceeds 1500 lines; consider splitting into smaller, focused files or sections to improve maintainability and navigation.
# Aspire Resource Model: Concepts, Design, and Authoring Guidance
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…ation" section in appmodel.md
DamianEdwards
approved these changes
Jul 12, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added the app model guide to the repo. This is great for LLMs to consume.