Skip to content

Commit

Permalink
Recapture image, use the None option
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist committed Dec 1, 2023
1 parent 272306e commit 994c9b7
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 47 deletions.
7 changes: 4 additions & 3 deletions docs/storage/azure-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ You also need to assign the following roles to the user account you are logged i
- Leave the rest of the values at their defaults and select **Next**.
1. On the **Additional information** screen:
- Make sure **.NET 8.0** is selected.
- Make sure **Enlist in .NET Aspire orchestration** is checked and select **Create**.
- Ensure the **Interactive render mode** is set to **None**.
- Check the **Enlist in .NET Aspire orchestration** option and select **Create**.

Visual Studio creates a new ASP.NET Core solution that is structured to use .NET Aspire. The solution consists of the following projects:

Expand Down Expand Up @@ -115,12 +116,12 @@ In the _Program.cs_ file of the _AspireStorage_ project, add calls to the <xref:

:::zone pivot="azurite"

:::code source="snippets/tutorial/AspireStorage/AspireStorage/Program.cs" highlight="2-3,7-8,30-39":::
:::code source="snippets/tutorial/AspireStorage/AspireStorage/Program.cs" highlight="2-3,7-8,29-38":::

:::zone-end
:::zone pivot="azure-portal,azure-cli"

:::code source="snippets/tutorial/AspireStorage/AspireStorage/Program.cs" range="1-27,41-50" highlight="2-3,7-8":::
:::code source="snippets/tutorial/AspireStorage/AspireStorage/Program.cs" range="1-26,40-58" highlight="2-3,7-8":::

:::zone-end

Expand Down
Binary file modified docs/storage/media/support-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions docs/storage/snippets/tutorial/AspireStorage/AspireStorage.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspireStorage.ServiceDefaul
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspireStorage.Worker", "AspireStorage.Worker\AspireStorage.Worker.csproj", "{E9CE3EB7-E021-407A-ACA7-785E5A7D968C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspireStorage", "AspireStorage\AspireStorage.csproj", "{6473DB2E-9BDA-439E-9AF4-99D165D9E315}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspireStorage", "AspireStorage\AspireStorage.csproj", "{E323D2AB-6A80-47B8-8F55-BD3CBDFCD63D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -29,10 +29,10 @@ Global
{E9CE3EB7-E021-407A-ACA7-785E5A7D968C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E9CE3EB7-E021-407A-ACA7-785E5A7D968C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E9CE3EB7-E021-407A-ACA7-785E5A7D968C}.Release|Any CPU.Build.0 = Release|Any CPU
{6473DB2E-9BDA-439E-9AF4-99D165D9E315}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6473DB2E-9BDA-439E-9AF4-99D165D9E315}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6473DB2E-9BDA-439E-9AF4-99D165D9E315}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6473DB2E-9BDA-439E-9AF4-99D165D9E315}.Release|Any CPU.Build.0 = Release|Any CPU
{E323D2AB-6A80-47B8-8F55-BD3CBDFCD63D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E323D2AB-6A80-47B8-8F55-BD3CBDFCD63D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E323D2AB-6A80-47B8-8F55-BD3CBDFCD63D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E323D2AB-6A80-47B8-8F55-BD3CBDFCD63D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,3 @@
</article>
</main>
</div>

<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@
</NavLink>
</div>

<div class="nav-item px-3">
<NavLink class="nav-link" href="counter">
<span class="bi bi-plus-square-fill-nav-menu" aria-hidden="true"></span> Counter
</NavLink>
</div>

<div class="nav-item px-3">
<NavLink class="nav-link" href="weather">
<span class="bi bi-list-nested-nav-menu" aria-hidden="true"></span> Weather
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
builder.AddServiceDefaults();

// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddRazorComponents();

var app = builder.Build();

Expand Down Expand Up @@ -44,7 +43,6 @@
app.UseStaticFiles();
app.UseAntiforgery();

app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
app.MapRazorComponents<App>();

app.Run();
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:19207",
"sslPort": 44344
"applicationUrl": "http://localhost:60364",
"sslPort": 44317
}
},
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:5198",
"applicationUrl": "http://localhost:5125",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand All @@ -22,7 +22,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:7018;http://localhost:5198",
"applicationUrl": "https://localhost:7106;http://localhost:5125",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down

0 comments on commit 994c9b7

Please sign in to comment.