diff --git a/docs/fundamentals/external-parameters.md b/docs/fundamentals/external-parameters.md index 160d2fc326..6414cf24ca 100644 --- a/docs/fundamentals/external-parameters.md +++ b/docs/fundamentals/external-parameters.md @@ -134,11 +134,15 @@ var builder = DistributedApplication.CreateBuilder(args); var redis = builder.AddConnectionString("redis"); builder.AddProject("api") - .WithReference(redis); + .WithReference(redis) + .WaitFor(redis); builder.Build().Run(); ``` +> [!NOTE] +> Using with a connection string will implicitly wait for the resource that the connection string connects to. + Now consider the following app host configuration file _:::no-loc text="appsettings.json":::_: ```json @@ -151,6 +155,18 @@ Now consider the following app host configuration file _:::no-loc text="appsetti For more information pertaining to connection strings and their representation in the deployment manifest, see [Connection string and binding references](../deployment/manifest-format.md#connection-string-and-binding-references). +### Build connection strings with reference expressions + +If you want to construct a connection string from parameters and ensure that it's handled correctly in both development and production, use with a . + +For example, if you have a secret parameter that stores a small part of a connection string, use this code to insert it: + +:::code language="csharp" source="snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Program.cs" id="secretkey"::: + +You can also use reference expressions to append text to connection strings created by .NET Aspire resources. For example, when you add a PostgreSQL resource to your .NET Aspire solution, the database server runs in a container and a connection string is formulated for it. In the following code, the extra property `Include Error Details` is appended to that connection string before it's passed to consuming projects: + +:::code language="csharp" source="snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Program.cs" id="postgresappend"::: + ## Parameter example To express a parameter, consider the following example code: diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/AspireReferenceExpressions.AppHost.csproj b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/AspireReferenceExpressions.AppHost.csproj new file mode 100644 index 0000000000..b59d997161 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/AspireReferenceExpressions.AppHost.csproj @@ -0,0 +1,23 @@ + + + + + + Exe + net9.0 + enable + enable + 6329c834-f9f4-422d-b8e3-d9583b2574c3 + + + + + + + + + + + + + diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Program.cs b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Program.cs new file mode 100644 index 0000000000..4a5b48850a --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Program.cs @@ -0,0 +1,28 @@ +var builder = DistributedApplication.CreateBuilder(args); + +// +var secretKey = builder.AddParameter("secretkey", secret: true); + +var connectionString = builder.AddConnectionString( + "composedconnectionstring", + ReferenceExpression.Create($"Endpoint=https://api.contoso.com/v1;Key={secretKey}")); + +builder.AddProject("catalogapi") + .WithReference(connectionString) + .WaitFor(connectionString); +// + +// +var postgres = builder.AddPostgres("postgres"); +var database = postgres.AddDatabase("db"); + +var pgConnectionString = builder.AddConnectionString( + "pgdatabase", + ReferenceExpression.Create($"{database};Include Error Details=true")); + +builder.AddProject("customerapi") + .WithReference(pgConnectionString) + .WaitFor(pgConnectionString); +// + +builder.Build().Run(); diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Properties/launchSettings.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Properties/launchSettings.json new file mode 100644 index 0000000000..ca1620516b --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/Properties/launchSettings.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:17120;http://localhost:15249", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "DOTNET_ENVIRONMENT": "Development", + "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21231", + "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22183" + } + }, + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:15249", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "DOTNET_ENVIRONMENT": "Development", + "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19230", + "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20092" + } + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/appsettings.Development.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/appsettings.Development.json new file mode 100644 index 0000000000..0c208ae918 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/appsettings.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/appsettings.json new file mode 100644 index 0000000000..31c092aa45 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.AppHost/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Aspire.Hosting.Dcp": "Warning" + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/AspireReferenceExpressions.CatalogAPI.csproj b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/AspireReferenceExpressions.CatalogAPI.csproj new file mode 100644 index 0000000000..d096448826 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/AspireReferenceExpressions.CatalogAPI.csproj @@ -0,0 +1,17 @@ + + + + net9.0 + enable + enable + + + + + + + + + + + diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/AspireReferenceExpressions.CatalogAPI.http b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/AspireReferenceExpressions.CatalogAPI.http new file mode 100644 index 0000000000..58a54e9360 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/AspireReferenceExpressions.CatalogAPI.http @@ -0,0 +1,6 @@ +@AspireReferenceExpressions.CatalogAPI_HostAddress = http://localhost:5058 + +GET {{AspireReferenceExpressions.CatalogAPI_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/Program.cs b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/Program.cs new file mode 100644 index 0000000000..f58e31856a --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/Program.cs @@ -0,0 +1,45 @@ +var builder = WebApplication.CreateBuilder(args); + +builder.AddServiceDefaults(); + +// Add services to the container. +// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi +builder.Services.AddOpenApi(); + +var app = builder.Build(); + +app.MapDefaultEndpoints(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.MapOpenApi(); +} + +app.UseHttpsRedirection(); + +var summaries = new[] +{ + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" +}; + +app.MapGet("/weatherforecast", () => +{ + var forecast = Enumerable.Range(1, 5).Select(index => + new WeatherForecast + ( + DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + Random.Shared.Next(-20, 55), + summaries[Random.Shared.Next(summaries.Length)] + )) + .ToArray(); + return forecast; +}) +.WithName("GetWeatherForecast"); + +app.Run(); + +record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary) +{ + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/Properties/launchSettings.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/Properties/launchSettings.json new file mode 100644 index 0000000000..783c93500e --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:5058", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7171;http://localhost:5058", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/appsettings.Development.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/appsettings.Development.json new file mode 100644 index 0000000000..0c208ae918 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/appsettings.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/appsettings.json new file mode 100644 index 0000000000..10f68b8c8b --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CatalogAPI/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/AspireReferenceExpressions.CustomerAPI.csproj b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/AspireReferenceExpressions.CustomerAPI.csproj new file mode 100644 index 0000000000..d096448826 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/AspireReferenceExpressions.CustomerAPI.csproj @@ -0,0 +1,17 @@ + + + + net9.0 + enable + enable + + + + + + + + + + + diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/AspireReferenceExpressions.CustomerAPI.http b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/AspireReferenceExpressions.CustomerAPI.http new file mode 100644 index 0000000000..a4c66848a6 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/AspireReferenceExpressions.CustomerAPI.http @@ -0,0 +1,6 @@ +@AspireReferenceExpressions.CustomerAPI_HostAddress = http://localhost:5022 + +GET {{AspireReferenceExpressions.CustomerAPI_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/Program.cs b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/Program.cs new file mode 100644 index 0000000000..31ba0e7f4b --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/Program.cs @@ -0,0 +1,43 @@ +var builder = WebApplication.CreateBuilder(args); + +builder.AddServiceDefaults(); + +// Add services to the container. +// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi +builder.Services.AddOpenApi(); + +var app = builder.Build(); + +app.MapDefaultEndpoints(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.MapOpenApi(); +} + +var summaries = new[] +{ + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" +}; + +app.MapGet("/weatherforecast", () => +{ + var forecast = Enumerable.Range(1, 5).Select(index => + new WeatherForecast + ( + DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + Random.Shared.Next(-20, 55), + summaries[Random.Shared.Next(summaries.Length)] + )) + .ToArray(); + return forecast; +}) +.WithName("GetWeatherForecast"); + +app.Run(); + +record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary) +{ + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/Properties/launchSettings.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/Properties/launchSettings.json new file mode 100644 index 0000000000..1fb7ae9b97 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/Properties/launchSettings.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:5022", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/appsettings.Development.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/appsettings.Development.json new file mode 100644 index 0000000000..0c208ae918 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/appsettings.json b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/appsettings.json new file mode 100644 index 0000000000..10f68b8c8b --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.CustomerAPI/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.ServiceDefaults/AspireReferenceExpressions.ServiceDefaults.csproj b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.ServiceDefaults/AspireReferenceExpressions.ServiceDefaults.csproj new file mode 100644 index 0000000000..763ede8394 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.ServiceDefaults/AspireReferenceExpressions.ServiceDefaults.csproj @@ -0,0 +1,22 @@ + + + + net9.0 + enable + enable + true + + + + + + + + + + + + + + + diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.ServiceDefaults/Extensions.cs b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.ServiceDefaults/Extensions.cs new file mode 100644 index 0000000000..112c128147 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.ServiceDefaults/Extensions.cs @@ -0,0 +1,127 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Diagnostics.HealthChecks; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Diagnostics.HealthChecks; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.ServiceDiscovery; +using OpenTelemetry; +using OpenTelemetry.Metrics; +using OpenTelemetry.Trace; + +namespace Microsoft.Extensions.Hosting; + +// Adds common .NET Aspire services: service discovery, resilience, health checks, and OpenTelemetry. +// This project should be referenced by each service project in your solution. +// To learn more about using this project, see https://aka.ms/dotnet/aspire/service-defaults +public static class Extensions +{ + private const string HealthEndpointPath = "/health"; + private const string AlivenessEndpointPath = "/alive"; + + public static TBuilder AddServiceDefaults(this TBuilder builder) where TBuilder : IHostApplicationBuilder + { + builder.ConfigureOpenTelemetry(); + + builder.AddDefaultHealthChecks(); + + builder.Services.AddServiceDiscovery(); + + builder.Services.ConfigureHttpClientDefaults(http => + { + // Turn on resilience by default + http.AddStandardResilienceHandler(); + + // Turn on service discovery by default + http.AddServiceDiscovery(); + }); + + // Uncomment the following to restrict the allowed schemes for service discovery. + // builder.Services.Configure(options => + // { + // options.AllowedSchemes = ["https"]; + // }); + + return builder; + } + + public static TBuilder ConfigureOpenTelemetry(this TBuilder builder) where TBuilder : IHostApplicationBuilder + { + builder.Logging.AddOpenTelemetry(logging => + { + logging.IncludeFormattedMessage = true; + logging.IncludeScopes = true; + }); + + builder.Services.AddOpenTelemetry() + .WithMetrics(metrics => + { + metrics.AddAspNetCoreInstrumentation() + .AddHttpClientInstrumentation() + .AddRuntimeInstrumentation(); + }) + .WithTracing(tracing => + { + tracing.AddSource(builder.Environment.ApplicationName) + .AddAspNetCoreInstrumentation(tracing => + // Exclude health check requests from tracing + tracing.Filter = context => + !context.Request.Path.StartsWithSegments(HealthEndpointPath) + && !context.Request.Path.StartsWithSegments(AlivenessEndpointPath) + ) + // Uncomment the following line to enable gRPC instrumentation (requires the OpenTelemetry.Instrumentation.GrpcNetClient package) + //.AddGrpcClientInstrumentation() + .AddHttpClientInstrumentation(); + }); + + builder.AddOpenTelemetryExporters(); + + return builder; + } + + private static TBuilder AddOpenTelemetryExporters(this TBuilder builder) where TBuilder : IHostApplicationBuilder + { + var useOtlpExporter = !string.IsNullOrWhiteSpace(builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]); + + if (useOtlpExporter) + { + builder.Services.AddOpenTelemetry().UseOtlpExporter(); + } + + // Uncomment the following lines to enable the Azure Monitor exporter (requires the Azure.Monitor.OpenTelemetry.AspNetCore package) + //if (!string.IsNullOrEmpty(builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"])) + //{ + // builder.Services.AddOpenTelemetry() + // .UseAzureMonitor(); + //} + + return builder; + } + + public static TBuilder AddDefaultHealthChecks(this TBuilder builder) where TBuilder : IHostApplicationBuilder + { + builder.Services.AddHealthChecks() + // Add a default liveness check to ensure app is responsive + .AddCheck("self", () => HealthCheckResult.Healthy(), ["live"]); + + return builder; + } + + public static WebApplication MapDefaultEndpoints(this WebApplication app) + { + // Adding health checks endpoints to applications in non-development environments has security implications. + // See https://aka.ms/dotnet/aspire/healthchecks for details before enabling these endpoints in non-development environments. + if (app.Environment.IsDevelopment()) + { + // All health checks must pass for app to be considered ready to accept traffic after starting + app.MapHealthChecks(HealthEndpointPath); + + // Only health checks tagged with the "live" tag must pass for app to be considered alive + app.MapHealthChecks(AlivenessEndpointPath, new HealthCheckOptions + { + Predicate = r => r.Tags.Contains("live") + }); + } + + return app; + } +} diff --git a/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.sln b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.sln new file mode 100644 index 0000000000..4b1b1b6238 --- /dev/null +++ b/docs/fundamentals/snippets/referenceexpressions/AspireReferenceExpressions.sln @@ -0,0 +1,42 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.13.35818.85 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspireReferenceExpressions.AppHost", "AspireReferenceExpressions.AppHost\AspireReferenceExpressions.AppHost.csproj", "{71D548FB-33D0-4DA6-99D9-1BAB1A319DFD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspireReferenceExpressions.ServiceDefaults", "AspireReferenceExpressions.ServiceDefaults\AspireReferenceExpressions.ServiceDefaults.csproj", "{315B3204-3FAF-951F-2945-654712FAABD1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspireReferenceExpressions.CatalogAPI", "AspireReferenceExpressions.CatalogAPI\AspireReferenceExpressions.CatalogAPI.csproj", "{F8E5F6AC-D19B-C0AA-3276-A910BB472B25}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspireReferenceExpressions.CustomerAPI", "AspireReferenceExpressions.CustomerAPI\AspireReferenceExpressions.CustomerAPI.csproj", "{C112814D-6F04-57A4-DB0E-5EB5F1E62B82}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {71D548FB-33D0-4DA6-99D9-1BAB1A319DFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {71D548FB-33D0-4DA6-99D9-1BAB1A319DFD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {71D548FB-33D0-4DA6-99D9-1BAB1A319DFD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {71D548FB-33D0-4DA6-99D9-1BAB1A319DFD}.Release|Any CPU.Build.0 = Release|Any CPU + {315B3204-3FAF-951F-2945-654712FAABD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {315B3204-3FAF-951F-2945-654712FAABD1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {315B3204-3FAF-951F-2945-654712FAABD1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {315B3204-3FAF-951F-2945-654712FAABD1}.Release|Any CPU.Build.0 = Release|Any CPU + {F8E5F6AC-D19B-C0AA-3276-A910BB472B25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F8E5F6AC-D19B-C0AA-3276-A910BB472B25}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F8E5F6AC-D19B-C0AA-3276-A910BB472B25}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F8E5F6AC-D19B-C0AA-3276-A910BB472B25}.Release|Any CPU.Build.0 = Release|Any CPU + {C112814D-6F04-57A4-DB0E-5EB5F1E62B82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C112814D-6F04-57A4-DB0E-5EB5F1E62B82}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C112814D-6F04-57A4-DB0E-5EB5F1E62B82}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C112814D-6F04-57A4-DB0E-5EB5F1E62B82}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3A5ADC87-AC20-4C4A-8437-46E246648053} + EndGlobalSection +EndGlobal