Projektdateien hinzufügen.

This commit is contained in:
Tim Krampitz
2026-07-19 21:18:10 +02:00
parent d6604c216e
commit 9d91981c3b
43 changed files with 1282 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
var builder = DistributedApplication.CreateBuilder(args);
builder.AddProject<Projects.SlipItIn>("slipitin");
builder.Build().Run();

View File

@@ -0,0 +1,31 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:17039;http://localhost:15202",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21166",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "https://localhost:23040",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22037"
}
},
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:15202",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19020",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "http://localhost:18171",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20124"
}
}
}
}

View File

@@ -0,0 +1,21 @@
<Project Sdk="Aspire.AppHost.Sdk/13.2.4">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>ca019835-4f70-4807-86e3-3a4ff7bb0df3</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MessagePack" Version="3.1.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SlipItIN\SlipItIn.csproj">
<SetTargetFramework>TargetFramework=net10.0</SetTargetFramework>
</ProjectReference>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Aspire.Hosting.Dcp": "Warning"
}
}
}