-
Couldn't load subscription status.
- Fork 131
Updating to 9.5 pre-release #868
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the project to use .NET Aspire 9.5 pre-release versions, upgrading from the previous 9.4.1 version. The changes include updating package versions, configuring new package sources, and making minor code formatting improvements.
- Updates Aspire version from 9.4.1 to 9.5.0
- Configures new NuGet package source for Aspire 9.5 pre-release packages
- Updates various .NET extension package versions to align with the new Aspire version
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Directory.Build.props | Updates AspireVersion from 9.4.1 to 9.5.0 |
| Directory.Packages.props | Updates .NET extension package versions and references AspireVersion for ServiceDiscovery |
| nuget.config | Adds aspire9-5-public package source and configures package source mapping |
| .devcontainer/devcontainer.json | Updates base image from jammy to noble |
| tests/CommunityToolkit.Aspire.Hosting.Azure.Dapr.Redis.Tests/ResourceCreationTests.cs | Adds hostName output to bicep templates and reformats lambda expressions |
nuget.config
Outdated
| <add key="aspire9-5-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-aspire-48a11dae/nuget/v3/index.json" /> | ||
| </packageSources> | ||
| <packageSourceMapping> | ||
| <!-- <packageSource key="dotnet9"> | ||
| <package pattern="Aspire.*" /> | ||
| <package pattern="Microsoft.Extensions.ServiceDiscovery*" /> | ||
| <package pattern="Microsoft.Extensions.Http.Resilience" /> | ||
| </packageSource> --> | ||
| <packageSource key="aspire9-5-public"> | ||
| <package pattern="Aspire.*" /> | ||
| <package pattern="Microsoft.Extensions.ServiceDiscovery*" /> | ||
| </packageSource> |
Copilot
AI
Sep 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The line has trailing whitespace that should be removed for consistency with project formatting standards.
See below for a potential fix:
<add key="aspire9-5-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-aspire-48a11dae/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="aspire9-5-public">
<package pattern="Aspire.*" />
<package pattern="Microsoft.Extensions.ServiceDiscovery*" />
</packageSource>
nuget.config
Outdated
| <packageSource key="aspire9-5-public"> | ||
| <package pattern="Aspire.*" /> | ||
| <package pattern="Microsoft.Extensions.ServiceDiscovery*" /> | ||
| </packageSource> |
Copilot
AI
Sep 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These lines have trailing whitespace that should be removed for consistency with project formatting standards.
| </packageSource> | |
| </packageSource> |
Minimum allowed line rate is |
No description provided.