From e0313b83a033040660f0669de6d9e77042e87026 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Thu, 18 Jul 2024 20:54:19 +0300 Subject: Initial commit --- RhSolutions.SkuParser.Api/Program.cs | 6 ++++ .../Properties/launchSettings.json | 38 ++++++++++++++++++++++ .../RhSolutions.SkuParser.Api.csproj | 9 +++++ .../appsettings.Development.json | 8 +++++ RhSolutions.SkuParser.Api/appsettings.json | 9 +++++ 5 files changed, 70 insertions(+) create mode 100644 RhSolutions.SkuParser.Api/Program.cs create mode 100644 RhSolutions.SkuParser.Api/Properties/launchSettings.json create mode 100644 RhSolutions.SkuParser.Api/RhSolutions.SkuParser.Api.csproj create mode 100644 RhSolutions.SkuParser.Api/appsettings.Development.json create mode 100644 RhSolutions.SkuParser.Api/appsettings.json (limited to 'RhSolutions.SkuParser.Api') diff --git a/RhSolutions.SkuParser.Api/Program.cs b/RhSolutions.SkuParser.Api/Program.cs new file mode 100644 index 0000000..1760df1 --- /dev/null +++ b/RhSolutions.SkuParser.Api/Program.cs @@ -0,0 +1,6 @@ +var builder = WebApplication.CreateBuilder(args); +var app = builder.Build(); + +app.MapGet("/", () => "Hello World!"); + +app.Run(); diff --git a/RhSolutions.SkuParser.Api/Properties/launchSettings.json b/RhSolutions.SkuParser.Api/Properties/launchSettings.json new file mode 100644 index 0000000..06b56be --- /dev/null +++ b/RhSolutions.SkuParser.Api/Properties/launchSettings.json @@ -0,0 +1,38 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:35100", + "sslPort": 44355 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:5087", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7266;http://localhost:5087", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/RhSolutions.SkuParser.Api/RhSolutions.SkuParser.Api.csproj b/RhSolutions.SkuParser.Api/RhSolutions.SkuParser.Api.csproj new file mode 100644 index 0000000..1b28a01 --- /dev/null +++ b/RhSolutions.SkuParser.Api/RhSolutions.SkuParser.Api.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/RhSolutions.SkuParser.Api/appsettings.Development.json b/RhSolutions.SkuParser.Api/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/RhSolutions.SkuParser.Api/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/RhSolutions.SkuParser.Api/appsettings.json b/RhSolutions.SkuParser.Api/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/RhSolutions.SkuParser.Api/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} -- cgit v1.2.3