aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.SkuParser.Api
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2024-07-18 20:54:19 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2024-07-18 20:54:19 +0300
commite0313b83a033040660f0669de6d9e77042e87026 (patch)
tree486436105e3f26598d7204d3c54bf627bb5d94a9 /RhSolutions.SkuParser.Api
Initial commit
Diffstat (limited to 'RhSolutions.SkuParser.Api')
-rw-r--r--RhSolutions.SkuParser.Api/Program.cs6
-rw-r--r--RhSolutions.SkuParser.Api/Properties/launchSettings.json38
-rw-r--r--RhSolutions.SkuParser.Api/RhSolutions.SkuParser.Api.csproj9
-rw-r--r--RhSolutions.SkuParser.Api/appsettings.Development.json8
-rw-r--r--RhSolutions.SkuParser.Api/appsettings.json9
5 files changed, 70 insertions, 0 deletions
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 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <ImplicitUsings>enable</ImplicitUsings>
+ </PropertyGroup>
+
+</Project>
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": "*"
+}