-
Notifications
You must be signed in to change notification settings - Fork 132
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
adding code and details for codespaces and existing azure resources #2663
base: dotnet-aspire-9.1
Are you sure you want to change the base?
Conversation
@@ -127,6 +127,10 @@ The `PublishAsDockerfile()` feature was introduced for all projects and executab | |||
|
|||
In 9.1, we addressed a persistent issue where Docker networks created by .NET Aspire would remain active even after the application was stopped. This bug, tracked in [issue #6504](https://github.com/dotnet/aspire/issues/6504), is resolved. Now, Docker networks are properly cleaned up, ensuring a more efficient and tidy development environment. | |||
|
|||
### GitHub Codespaces support |
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.
I added a section with links to the new articles already, see:
I'm not certain we need this section, unless you really want to keep it?
var existingAzureResource = builder.AddParameter("myExistingAzureResourceName"); | ||
var serviceBus = builder.AddAzureServiceBus("messaging") | ||
.RunAsExisting(existingAzureResource) | ||
.WithQueue("queue"); |
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 WithQueue
is obsolete for 9.1.
.RunAsExisting(existingAzureResource) | ||
.WithQueue("queue"); | ||
|
||
# Omitted for brevity |
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.
In C# the #
isn't used for a comment, instead use //
. 😬
# Omitted for brevity | |
// Omitted for brevity |
- Experimental support for configuring custom domains in Azure Container Apps (ACA) was added. | ||
|
||
#### Leverage existing Azure resources |
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.
We have added all of this content for 9.1, here:
You might consider borrowing from that and then linking to it for more detail?
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.
You should sync your branch. I expanded on all the Azure integration 9.1 features in Enhance Integrations What's New in 9.1 (dotnet/docs-aspire#2657)
touchin it up
Internal previews