Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.AppHost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.AppHost

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add project, container, and executable resources:
Then, in the _AppHost.cs_ file of `AppHost`, add project, container, and executable resources:

```csharp
var builder = DistributedApplication.CreateBuilder(args);
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.AppConfiguration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add an App Configuration connection and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add an App Configuration connection and consume the connection using the following methods:

```csharp
var appConfig = builder.AddAzureAppConfiguration("config");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.ApplicationInsights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add an Application Insights connection and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add an Application Insights connection and consume the connection using the following methods:

```csharp
var appInsights = builder.AddAzureApplicationInsights("appInsights");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.CognitiveServices/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add an Azure OpenAI service and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add an Azure OpenAI service and consume the connection using the following methods:

```csharp
var openai = builder.AddAzureOpenAI("openai");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.CosmosDB/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Cosmos DB connection and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Cosmos DB connection and consume the connection using the following methods:

```csharp
var cosmosdb = builder.AddAzureCosmosDB("cdb").AddCosmosDatabase("cosmosdb");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.EventHubs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

In the _Program.cs_ file of `AppHost`, add an Event Hubs connection and consume the connection using the following methods:
In the _AppHost.cs_ file of `AppHost`, add an Event Hubs connection and consume the connection using the following methods:

```csharp
var eventHubs = builder.AddAzureEventHubs("eh");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.Functions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add a reference to the .NET-based Azure Functions project in your `AppHost` proj
dotnet add reference ..\Company.FunctionApp\Company.FunctionApp.csproj
```

In the _Program.cs_ file of `AppHost`, use the `AddAzureFunctionsProject` to configure the Functions project resource.
In the _AppHost.cs_ file of `AppHost`, use the `AddAzureFunctionsProject` to configure the Functions project resource.

```csharp
using Aspire.Hosting;
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.OperationalInsights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add an Azure Log Analytics workspace and pass the workspace ID via an environment variable:
Then, in the _AppHost.cs_ file of `AppHost`, add an Azure Log Analytics workspace and pass the workspace ID via an environment variable:

```csharp
var laws = builder.AddAzureLogAnalyticsWorkspace("laws");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.PostgreSQL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, register a Postgres database and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, register a Postgres database and consume the connection using the following methods:

```csharp
var postgresdb = builder.AddAzurePostgresFlexibleServer("pg")
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.Redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, register a Redis server and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, register a Redis server and consume the connection using the following methods:

```csharp
var redis = builder.AddAzureRedis("cache");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.Search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add an Azure AI Search service and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add an Azure AI Search service and consume the connection using the following methods:

```csharp
var search = builder.AddAzureSearch("search");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.ServiceBus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

In the _Program.cs_ file of `AppHost`, add a Service Bus connection and consume the connection using the following methods:
In the _AppHost.cs_ file of `AppHost`, add a Service Bus connection and consume the connection using the following methods:

```csharp
var serviceBus = builder.AddAzureServiceBus("sb");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.SignalR/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

In the _Program.cs_ file of `AppHost`, add a SignalR connection and consume the connection using the following methods:
In the _AppHost.cs_ file of `AppHost`, add a SignalR connection and consume the connection using the following methods:

```csharp
var signalR = builder.AddAzureSignalR("sr");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.Sql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

In the _Program.cs_ file of `AppHost`, register a SqlServer database and consume the connection using the following methods:
In the _AppHost.cs_ file of `AppHost`, register a SqlServer database and consume the connection using the following methods:

```csharp
var sql = builder.AddAzureSqlServer("sql")
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.Storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

In the _Program.cs_ file of `AppHost`, add a Blob (can use tables or queues also) Storage connection and consume the connection using the following methods:
In the _AppHost.cs_ file of `AppHost`, add a Blob (can use tables or queues also) Storage connection and consume the connection using the following methods:

```csharp
var blobs = builder.AddAzureStorage("storage").AddBlobs("blobs");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure.WebPubSub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dotnet add package Aspire.Hosting.Azure.WebPubSub

## Usage example

In the _Program.cs_ file of `AppHost`, add a WebPubSub connection and consume the connection using the following methods:
In the _AppHost.cs_ file of `AppHost`, add a WebPubSub connection and consume the connection using the following methods:

```csharp
var wps = builder.AddAzureWebPubSub("wps1");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automatically.

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a resource based on a Bicep template:
Then, in the _AppHost.cs_ file of `AppHost`, add a resource based on a Bicep template:

```csharp
var bicepResource = builder.AddBicepTemplate("bicep", "template.bicep")
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Docker

## Usage example

Then, in the _Program.cs_ file of `AppHost`, register the publisher:
Then, in the _AppHost.cs_ file of `AppHost`, register the publisher:

```csharp
builder.AddPublisher<DockerComposePublisher>("docker-compose");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Garnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dotnet add package Aspire.Hosting.Garnet

## Usage example

Then, in the _Program.cs_ file of `AppHost`, register a Garnet server and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, register a Garnet server and consume the connection using the following methods:

```csharp
var garnet = builder.AddGarnet("cache")
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Kafka

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Kafka resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Kafka resource and consume the connection using the following methods:

```csharp
var kafka = builder.AddKafka("messaging");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Keycloak/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Keycloak

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Keycloak resource and enable service discovery using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Keycloak resource and enable service discovery using the following methods:

```csharp
var keycloak = builder.AddKeycloak("keycloak", 8080);
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Kubernetes

## Usage example

Then, in the _Program.cs_ file of `AppHost`, register the publisher:
Then, in the _AppHost.cs_ file of `AppHost`, register the publisher:

```csharp
builder.AddPublisher<KubernetesPublisher>("k8s");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Milvus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Milvus

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Milvus resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Milvus resource and consume the connection using the following methods:

```csharp
var milvus = builder.AddMilvus("milvus");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.MongoDB/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.MongoDB

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a MongoDB resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a MongoDB resource and consume the connection using the following methods:

```csharp
var db = builder.AddMongoDB("mongodb").AddDatabase("mydb");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.MySql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.MySql

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a MySQL resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a MySQL resource and consume the connection using the following methods:

```csharp
var db = builder.AddMySql("mysql").AddDatabase("mydb");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Nats/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Nats

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a NATS resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a NATS resource and consume the connection using the following methods:

```csharp
var nats = builder.AddNats("nats");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.NodeJs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.NodeJs

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Or resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Or resource and consume the connection using the following methods:

```csharp
var builder = DistributedApplication.CreateBuilder(args);
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Oracle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Oracle

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Oracle database resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Oracle database resource and consume the connection using the following methods:

```csharp
var db = builder.AddOracle("oracle").AddDatabase("mydb");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Orleans/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Orleans

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Or resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Or resource and consume the connection using the following methods:

```csharp
var storage = builder.AddAzureStorage("storage").RunAsEmulator();
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.PostgreSQL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.PostgreSQL

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a PostgreSQL resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a PostgreSQL resource and consume the connection using the following methods:

```csharp
var db = builder.AddPostgres("pgsql").AddDatabase("mydb");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Qdrant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Qdrant

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Qdrant resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Qdrant resource and consume the connection using the following methods:

```csharp
var qdrant = builder.AddQdrant("qdrant");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.RabbitMQ/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.RabbitMQ

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a RabbitMQ resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a RabbitMQ resource and consume the connection using the following methods:

```csharp
var rmq = builder.AddRabbitMQ("rmq");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Redis

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Redis resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Redis resource and consume the connection using the following methods:

```csharp
var redis = builder.AddRedis("redis");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Seq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.Seq

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a Seq resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a Seq resource and consume the connection using the following methods:

```csharp
var seq = builder.AddSeq("seq");
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.SqlServer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotnet add package Aspire.Hosting.SqlServer

## Usage example

Then, in the _Program.cs_ file of `AppHost`, add a SQL Server resource and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, add a SQL Server resource and consume the connection using the following methods:

```csharp
var db = builder.AddSqlServer("sql").AddDatabase("db")
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Valkey/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dotnet add package Aspire.Hosting.Valkey

## Usage example

Then, in the _Program.cs_ file of `AppHost`, register a Valkey server and consume the connection using the following methods:
Then, in the _AppHost.cs_ file of `AppHost`, register a Valkey server and consume the connection using the following methods:

```csharp
var valkey = builder.AddValkey("cache")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,20 @@
"symbols/AspireVersionCli/displayName": "Verze .NET Aspire",
"symbols/AspireVersionCli/choices/9.2/displayName": "9.2",
"symbols/AspireVersionCli/choices/9.2/description": "Zvolí .NET Aspire 9.2.",
"symbols/AspireVersionCli/choices/9.1/displayName": "9.1",
"symbols/AspireVersionCli/choices/9.1/description": "Zvolí .NET Aspire 9.1",
"symbols/AspireVersionCli/choices/8.2/displayName": "8.2",
"symbols/AspireVersionCli/choices/8.2/description": "Zvolí .NET Aspire 8.2 (platné jenom v případě, že je zadané --framework net8.0).",
"symbols/AspireVersionCli/choices/9.3/displayName": "9.3",
"symbols/AspireVersionCli/choices/9.3/description": "Chooses .NET Aspire 9.3",
"symbols/AspireVersion/description": "Verze .NET Aspire, která se má použít",
"symbols/AspireVersion/displayName": "Verze .NET Aspire",
"symbols/AspireVersion/choices/9.2/displayName": "9.2",
"symbols/AspireVersion/choices/9.2/description": "Zvolí .NET Aspire 9.2.",
"symbols/AspireVersion/choices/9.1/displayName": "9.1",
"symbols/AspireVersion/choices/9.1/description": "Zvolí .NET Aspire 9.1",
"symbols/AspireVersion/choices/8.2/displayName": "8.2",
"symbols/AspireVersion/choices/8.2/description": "Zvolí .NET Aspire 8.2.",
"symbols/AspireVersion/choices/9.3/displayName": "9.3",
"symbols/AspireVersion/choices/9.3/description": "Chooses .NET Aspire 9.3",
"symbols/AspireVersionNet9/description": "Verze .NET Aspire, která se má použít",
"symbols/AspireVersionNet9/displayName": "Verze .NET Aspire",
"symbols/AspireVersionNet9/choices/9.2/displayName": "9.2",
"symbols/AspireVersionNet9/choices/9.2/description": "Zvolí .NET Aspire 9.2.",
"symbols/AspireVersionNet9/choices/9.1/displayName": "9.1",
"symbols/AspireVersionNet9/choices/9.1/description": "Zvolí .NET Aspire 9.1",
"symbols/AspireVersionNet9/choices/9.3/displayName": "9.3",
"symbols/AspireVersionNet9/choices/9.3/description": "Chooses .NET Aspire 9.3",
"symbols/appHostHttpPort/description": "Číslo portu, který se má použít pro koncový bod HTTP v launchSettings.json projektu AppHost.",
"symbols/appHostOtlpHttpPort/description": "Číslo portu, který se má použít pro koncový bod HTTP OTLP v launchSettings.json projektu AppHost.",
"symbols/appHostResourceHttpPort/description": "Číslo portu, který se má použít pro koncový bod HTTP služby prostředků v launchSettings.json projektu AppHost.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,20 @@
"symbols/AspireVersionCli/displayName": ".NET Aspire-Version",
"symbols/AspireVersionCli/choices/9.2/displayName": "9.2",
"symbols/AspireVersionCli/choices/9.2/description": "Wählt .NET Aspire 9.2",
"symbols/AspireVersionCli/choices/9.1/displayName": "9.1",
"symbols/AspireVersionCli/choices/9.1/description": "Wählt .NET Aspire 9.1",
"symbols/AspireVersionCli/choices/8.2/displayName": "8.2",
"symbols/AspireVersionCli/choices/8.2/description": "Wählt .NET Aspire 8.2 aus (nur gültig, wenn \"--framework net8.0\" angegeben ist)",
"symbols/AspireVersionCli/choices/9.3/displayName": "9.3",
"symbols/AspireVersionCli/choices/9.3/description": "Chooses .NET Aspire 9.3",
"symbols/AspireVersion/description": "Die zu verwendende .NET Aspire-Version.",
"symbols/AspireVersion/displayName": ".NET Aspire-Version",
"symbols/AspireVersion/choices/9.2/displayName": "9.2",
"symbols/AspireVersion/choices/9.2/description": "Wählt .NET Aspire 9.2",
"symbols/AspireVersion/choices/9.1/displayName": "9.1",
"symbols/AspireVersion/choices/9.1/description": "Wählt .NET Aspire 9.1",
"symbols/AspireVersion/choices/8.2/displayName": "8.2",
"symbols/AspireVersion/choices/8.2/description": "Wählt .NET Aspire 8.2",
"symbols/AspireVersion/choices/9.3/displayName": "9.3",
"symbols/AspireVersion/choices/9.3/description": "Chooses .NET Aspire 9.3",
"symbols/AspireVersionNet9/description": "Die zu verwendende .NET Aspire-Version.",
"symbols/AspireVersionNet9/displayName": ".NET Aspire-Version",
"symbols/AspireVersionNet9/choices/9.2/displayName": "9.2",
"symbols/AspireVersionNet9/choices/9.2/description": "Wählt .NET Aspire 9.2",
"symbols/AspireVersionNet9/choices/9.1/displayName": "9.1",
"symbols/AspireVersionNet9/choices/9.1/description": "Wählt .NET Aspire 9.1",
"symbols/AspireVersionNet9/choices/9.3/displayName": "9.3",
"symbols/AspireVersionNet9/choices/9.3/description": "Chooses .NET Aspire 9.3",
"symbols/appHostHttpPort/description": "Portnummer, die für den HTTP-Endpunkt in launchSettings.json des AppHost-Projekts verwendet werden soll.",
"symbols/appHostOtlpHttpPort/description": "Portnummer, die für den OTLP-HTTP-Endpunkt in launchSettings.json des AppHost-Projekts verwendet werden soll.",
"symbols/appHostResourceHttpPort/description": "Portnummer, die für den HTTP-Endpunkt des Ressourcendiensts in launchSettings.json des AppHost-Projekts verwendet werden soll.",
Expand Down
Loading