This commit is contained in:
6d486f49
2026-08-17 00:45:08 -04:00
parent 3a2f112a73
commit 1d6207fbfe
154 changed files with 126007 additions and 47385 deletions
+13
View File
@@ -0,0 +1,13 @@
using Projects;
var builder = DistributedApplication.CreateBuilder(args);
var api = builder.AddProject<API>("api");
var dbTest = builder.AddProject<DatabaseTest>("databasetest");
var web = builder.AddProject<Web>("web")
.WithReference(api)
.WaitFor(api);
builder.Build().Run();
+17
View File
@@ -0,0 +1,17 @@
<Project Sdk="Aspire.AppHost.Sdk/13.4.6">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>c48f3c51-1d8e-4778-aff9-7ad015fd4e02</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\API\API.csproj"/>
<ProjectReference Include="..\DatabaseTest\DatabaseTest.csproj"/>
<ProjectReference Include="..\Web\Web.csproj"/>
</ItemGroup>
</Project>
@@ -0,0 +1,29 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:17019;http://localhost:15020",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21097",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22290"
}
},
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:15020",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19107",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20209"
}
}
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Aspire.Hosting.Dcp": "Warning"
}
}
}
+5
View File
@@ -0,0 +1,5 @@
{
"appHost": {
"path": "Aspire.csproj"
}
}