commit c7b8857208b1f85d4298962ce8d321b51edb6658
Author: Holden <122419606+midozen@users.noreply.github.com>
Date: Wed Jun 17 22:27:12 2026 -0500
Initial commit
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..add57be
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+bin/
+obj/
+/packages/
+riderModule.iml
+/_ReSharper.Caches/
\ No newline at end of file
diff --git a/.idea/.idea.RecNet/.idea/.gitignore b/.idea/.idea.RecNet/.idea/.gitignore
new file mode 100644
index 0000000..18f1254
--- /dev/null
+++ b/.idea/.idea.RecNet/.idea/.gitignore
@@ -0,0 +1,15 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/projectSettingsUpdater.xml
+/modules.xml
+/contentModel.xml
+/.idea.RecNet.iml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Ignored default folder with query files
+/queries/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/.idea.RecNet/.idea/.name b/.idea/.idea.RecNet/.idea/.name
new file mode 100644
index 0000000..9d1670b
--- /dev/null
+++ b/.idea/.idea.RecNet/.idea/.name
@@ -0,0 +1 @@
+RecNet
\ No newline at end of file
diff --git a/.idea/.idea.RecNet/.idea/encodings.xml b/.idea/.idea.RecNet/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/.idea/.idea.RecNet/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.idea.RecNet/.idea/indexLayout.xml b/.idea/.idea.RecNet/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/.idea/.idea.RecNet/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.idea.RecNet/.idea/vcs.xml b/.idea/.idea.RecNet/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/.idea.RecNet/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/API/API.csproj b/API/API.csproj
new file mode 100644
index 0000000..43dbe8c
--- /dev/null
+++ b/API/API.csproj
@@ -0,0 +1,13 @@
+
+
+
+ net10.0
+ enable
+ enable
+
+
+
+
+
+
+
diff --git a/API/API.http b/API/API.http
new file mode 100644
index 0000000..7a443e3
--- /dev/null
+++ b/API/API.http
@@ -0,0 +1,6 @@
+@API_HostAddress = http://localhost:5155
+
+GET {{API_HostAddress}}/weatherforecast/
+Accept: application/json
+
+###
diff --git a/API/Controllers/WeatherForecastController.cs b/API/Controllers/WeatherForecastController.cs
new file mode 100644
index 0000000..143d301
--- /dev/null
+++ b/API/Controllers/WeatherForecastController.cs
@@ -0,0 +1,25 @@
+using Microsoft.AspNetCore.Mvc;
+
+namespace API.Controllers;
+
+[ApiController]
+[Route("[controller]")]
+public class WeatherForecastController : ControllerBase
+{
+ private static readonly string[] Summaries =
+ [
+ "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
+ ];
+
+ [HttpGet(Name = "GetWeatherForecast")]
+ public IEnumerable Get()
+ {
+ return Enumerable.Range(1, 5).Select(index => new WeatherForecast
+ {
+ Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
+ TemperatureC = Random.Shared.Next(-20, 55),
+ Summary = Summaries[Random.Shared.Next(Summaries.Length)]
+ })
+ .ToArray();
+ }
+}
\ No newline at end of file
diff --git a/API/Program.cs b/API/Program.cs
new file mode 100644
index 0000000..05af6ed
--- /dev/null
+++ b/API/Program.cs
@@ -0,0 +1,32 @@
+namespace API;
+
+public class Program
+{
+ public static void Main(string[] args)
+ {
+ var builder = WebApplication.CreateBuilder(args);
+
+ // Add services to the container.
+
+ builder.Services.AddControllers();
+ // Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
+ builder.Services.AddOpenApi();
+
+ var app = builder.Build();
+
+ // Configure the HTTP request pipeline.
+ if (app.Environment.IsDevelopment())
+ {
+ app.MapOpenApi();
+ }
+
+ app.UseHttpsRedirection();
+
+ app.UseAuthorization();
+
+
+ app.MapControllers();
+
+ app.Run();
+ }
+}
\ No newline at end of file
diff --git a/API/Properties/launchSettings.json b/API/Properties/launchSettings.json
new file mode 100644
index 0000000..2db9864
--- /dev/null
+++ b/API/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:5155",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": false,
+ "applicationUrl": "https://localhost:7218;http://localhost:5155",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/API/WeatherForecast.cs b/API/WeatherForecast.cs
new file mode 100644
index 0000000..3e5e783
--- /dev/null
+++ b/API/WeatherForecast.cs
@@ -0,0 +1,12 @@
+namespace API;
+
+public class WeatherForecast
+{
+ public DateOnly Date { get; set; }
+
+ public int TemperatureC { get; set; }
+
+ public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
+
+ public string? Summary { get; set; }
+}
\ No newline at end of file
diff --git a/API/appsettings.Development.json b/API/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/API/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/API/appsettings.json b/API/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/API/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/AppHost/AppHost.cs b/AppHost/AppHost.cs
new file mode 100644
index 0000000..312d8ca
--- /dev/null
+++ b/AppHost/AppHost.cs
@@ -0,0 +1,8 @@
+using Aspire.Hosting;
+
+var builder = DistributedApplication.CreateBuilder(args);
+
+var postgres = builder.AddPostgres("postgres");
+var db = postgres.AddDatabase("recnet");
+
+builder.Build().Run();
\ No newline at end of file
diff --git a/AppHost/AppHost.csproj b/AppHost/AppHost.csproj
new file mode 100644
index 0000000..6bd454c
--- /dev/null
+++ b/AppHost/AppHost.csproj
@@ -0,0 +1,15 @@
+
+
+
+ Exe
+ net10.0
+ enable
+ enable
+ f7385039-092b-4272-a61a-69c6a3d0d618
+
+
+
+
+
+
+
diff --git a/AppHost/Properties/launchSettings.json b/AppHost/Properties/launchSettings.json
new file mode 100644
index 0000000..5300d59
--- /dev/null
+++ b/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:17063;http://localhost:15151",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development",
+ "DOTNET_ENVIRONMENT": "Development",
+ "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21097",
+ "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22143"
+ }
+ },
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:15151",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development",
+ "DOTNET_ENVIRONMENT": "Development",
+ "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19205",
+ "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20044"
+ }
+ }
+ }
+}
diff --git a/AppHost/appsettings.Development.json b/AppHost/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/AppHost/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/AppHost/appsettings.json b/AppHost/appsettings.json
new file mode 100644
index 0000000..31c092a
--- /dev/null
+++ b/AppHost/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning",
+ "Aspire.Hosting.Dcp": "Warning"
+ }
+ }
+}
diff --git a/AppHost/aspire.config.json b/AppHost/aspire.config.json
new file mode 100644
index 0000000..a11bc78
--- /dev/null
+++ b/AppHost/aspire.config.json
@@ -0,0 +1,5 @@
+{
+ "appHost": {
+ "path": "AppHost.csproj"
+ }
+}
diff --git a/RecNet.Application/Class1.cs b/RecNet.Application/Class1.cs
new file mode 100644
index 0000000..498e353
--- /dev/null
+++ b/RecNet.Application/Class1.cs
@@ -0,0 +1,5 @@
+namespace RecNet.Application;
+
+public class Class1
+{
+}
\ No newline at end of file
diff --git a/RecNet.Application/RecNet.Application.csproj b/RecNet.Application/RecNet.Application.csproj
new file mode 100644
index 0000000..237d661
--- /dev/null
+++ b/RecNet.Application/RecNet.Application.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net10.0
+ enable
+ enable
+
+
+
diff --git a/RecNet.Domain/Class1.cs b/RecNet.Domain/Class1.cs
new file mode 100644
index 0000000..cc441a0
--- /dev/null
+++ b/RecNet.Domain/Class1.cs
@@ -0,0 +1,5 @@
+namespace RecNet.Domain;
+
+public class Class1
+{
+}
\ No newline at end of file
diff --git a/RecNet.Domain/RecNet.Domain.csproj b/RecNet.Domain/RecNet.Domain.csproj
new file mode 100644
index 0000000..237d661
--- /dev/null
+++ b/RecNet.Domain/RecNet.Domain.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net10.0
+ enable
+ enable
+
+
+
diff --git a/RecNet.Infrastructure/Persistence/DatabaseContext.cs b/RecNet.Infrastructure/Persistence/DatabaseContext.cs
new file mode 100644
index 0000000..c9235d1
--- /dev/null
+++ b/RecNet.Infrastructure/Persistence/DatabaseContext.cs
@@ -0,0 +1,8 @@
+using Microsoft.EntityFrameworkCore;
+
+namespace RecNet.Infrastructure.Persistence;
+
+public class DatabaseContext : DbContext
+{
+
+}
\ No newline at end of file
diff --git a/RecNet.Infrastructure/RecNet.Infrastructure.csproj b/RecNet.Infrastructure/RecNet.Infrastructure.csproj
new file mode 100644
index 0000000..f911312
--- /dev/null
+++ b/RecNet.Infrastructure/RecNet.Infrastructure.csproj
@@ -0,0 +1,17 @@
+
+
+
+ net10.0
+ enable
+ enable
+
+
+
+
+
+
+
+
+
+
+
diff --git a/RecNet.MigrationService/Program.cs b/RecNet.MigrationService/Program.cs
new file mode 100644
index 0000000..0592f80
--- /dev/null
+++ b/RecNet.MigrationService/Program.cs
@@ -0,0 +1,7 @@
+using RecNet.MigrationService;
+
+var builder = Host.CreateApplicationBuilder(args);
+builder.Services.AddHostedService();
+
+var host = builder.Build();
+host.Run();
\ No newline at end of file
diff --git a/RecNet.MigrationService/Properties/launchSettings.json b/RecNet.MigrationService/Properties/launchSettings.json
new file mode 100644
index 0000000..f6fc4b5
--- /dev/null
+++ b/RecNet.MigrationService/Properties/launchSettings.json
@@ -0,0 +1,12 @@
+{
+ "$schema": "https://json.schemastore.org/launchsettings.json",
+ "profiles": {
+ "RecNet.MigrationService": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "environmentVariables": {
+ "DOTNET_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/RecNet.MigrationService/RecNet.MigrationService.csproj b/RecNet.MigrationService/RecNet.MigrationService.csproj
new file mode 100644
index 0000000..cc9059e
--- /dev/null
+++ b/RecNet.MigrationService/RecNet.MigrationService.csproj
@@ -0,0 +1,13 @@
+
+
+
+ net10.0
+ enable
+ enable
+ dotnet-RecNet.MigrationService-78833cdb-5790-420f-94d2-bec6860bfe4c
+
+
+
+
+
+
diff --git a/RecNet.MigrationService/Worker.cs b/RecNet.MigrationService/Worker.cs
new file mode 100644
index 0000000..82974e2
--- /dev/null
+++ b/RecNet.MigrationService/Worker.cs
@@ -0,0 +1,17 @@
+namespace RecNet.MigrationService;
+
+public class Worker(ILogger logger) : BackgroundService
+{
+ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
+ {
+ while (!stoppingToken.IsCancellationRequested)
+ {
+ if (logger.IsEnabled(LogLevel.Information))
+ {
+ logger.LogInformation("Worker running at: {time}", DateTimeOffset.Now);
+ }
+
+ await Task.Delay(1000, stoppingToken);
+ }
+ }
+}
\ No newline at end of file
diff --git a/RecNet.MigrationService/appsettings.Development.json b/RecNet.MigrationService/appsettings.Development.json
new file mode 100644
index 0000000..b2dcdb6
--- /dev/null
+++ b/RecNet.MigrationService/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ }
+}
diff --git a/RecNet.MigrationService/appsettings.json b/RecNet.MigrationService/appsettings.json
new file mode 100644
index 0000000..b2dcdb6
--- /dev/null
+++ b/RecNet.MigrationService/appsettings.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ }
+}
diff --git a/RecNet.ServiceDefaults/Extensions.cs b/RecNet.ServiceDefaults/Extensions.cs
new file mode 100644
index 0000000..2cf5f5d
--- /dev/null
+++ b/RecNet.ServiceDefaults/Extensions.cs
@@ -0,0 +1,130 @@
+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 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/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/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;
+ }
+}
\ No newline at end of file
diff --git a/RecNet.ServiceDefaults/RecNet.ServiceDefaults.csproj b/RecNet.ServiceDefaults/RecNet.ServiceDefaults.csproj
new file mode 100644
index 0000000..b680ed9
--- /dev/null
+++ b/RecNet.ServiceDefaults/RecNet.ServiceDefaults.csproj
@@ -0,0 +1,22 @@
+
+
+
+ net10.0
+ enable
+ enable
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/RecNet.sln b/RecNet.sln
new file mode 100644
index 0000000..4f0a5cb
--- /dev/null
+++ b/RecNet.sln
@@ -0,0 +1,54 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RecNet.ServiceDefaults", "RecNet.ServiceDefaults\RecNet.ServiceDefaults.csproj", "{7773AA04-37C6-4E72-98AB-A239ED268ECC}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppHost", "AppHost\AppHost.csproj", "{F539C6BB-F396-41CC-B275-DF8CC3B8CA2F}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "API", "API\API.csproj", "{CD6E60F3-675A-4F51-8645-9CA6B35C1032}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RecNet.Infrastructure", "RecNet.Infrastructure\RecNet.Infrastructure.csproj", "{E61153A9-DAD9-4ED3-A8A5-8F619BBE54D4}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RecNet.Domain", "RecNet.Domain\RecNet.Domain.csproj", "{4E9D18A6-BC68-49BE-81FE-03B74270485D}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RecNet.Application", "RecNet.Application\RecNet.Application.csproj", "{BF255F63-3A85-4AD4-AB13-1C1C1C1724ED}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RecNet.MigrationService", "RecNet.MigrationService\RecNet.MigrationService.csproj", "{2343DEEB-8CBA-4B0A-BE67-3F8F76E6E7C1}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {7773AA04-37C6-4E72-98AB-A239ED268ECC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {7773AA04-37C6-4E72-98AB-A239ED268ECC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {7773AA04-37C6-4E72-98AB-A239ED268ECC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {7773AA04-37C6-4E72-98AB-A239ED268ECC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {F539C6BB-F396-41CC-B275-DF8CC3B8CA2F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {F539C6BB-F396-41CC-B275-DF8CC3B8CA2F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F539C6BB-F396-41CC-B275-DF8CC3B8CA2F}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {F539C6BB-F396-41CC-B275-DF8CC3B8CA2F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {CD6E60F3-675A-4F51-8645-9CA6B35C1032}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CD6E60F3-675A-4F51-8645-9CA6B35C1032}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CD6E60F3-675A-4F51-8645-9CA6B35C1032}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CD6E60F3-675A-4F51-8645-9CA6B35C1032}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E61153A9-DAD9-4ED3-A8A5-8F619BBE54D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E61153A9-DAD9-4ED3-A8A5-8F619BBE54D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E61153A9-DAD9-4ED3-A8A5-8F619BBE54D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E61153A9-DAD9-4ED3-A8A5-8F619BBE54D4}.Release|Any CPU.Build.0 = Release|Any CPU
+ {4E9D18A6-BC68-49BE-81FE-03B74270485D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {4E9D18A6-BC68-49BE-81FE-03B74270485D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4E9D18A6-BC68-49BE-81FE-03B74270485D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {4E9D18A6-BC68-49BE-81FE-03B74270485D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {BF255F63-3A85-4AD4-AB13-1C1C1C1724ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {BF255F63-3A85-4AD4-AB13-1C1C1C1724ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {BF255F63-3A85-4AD4-AB13-1C1C1C1724ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {BF255F63-3A85-4AD4-AB13-1C1C1C1724ED}.Release|Any CPU.Build.0 = Release|Any CPU
+ {2343DEEB-8CBA-4B0A-BE67-3F8F76E6E7C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {2343DEEB-8CBA-4B0A-BE67-3F8F76E6E7C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {2343DEEB-8CBA-4B0A-BE67-3F8F76E6E7C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {2343DEEB-8CBA-4B0A-BE67-3F8F76E6E7C1}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ EndGlobalSection
+EndGlobal