From 7d639ba2381529ae1583138ac5d9cdf95c828409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Tue, 29 Nov 2022 21:25:19 +0100 Subject: [PATCH] Add empty WebAPI project --- Diuna.sln | 25 ++++++++++++++ .../app/main-view/main-view.component.html | 1 + .../src/app/main-view/main-view.component.ts | 29 ++++++++++++++-- Frontend/src/index.html | 1 + .../Controllers/WeatherForecastController.cs | 33 +++++++++++++++++++ WebAPI/Program.cs | 17 ++++++++++ WebAPI/Properties/launchSettings.json | 31 +++++++++++++++++ WebAPI/WeatherForecast.cs | 13 ++++++++ WebAPI/WebAPI.csproj | 9 +++++ WebAPI/appsettings.Development.json | 8 +++++ WebAPI/appsettings.json | 9 +++++ 11 files changed, 174 insertions(+), 2 deletions(-) create mode 100644 Diuna.sln create mode 100644 WebAPI/Controllers/WeatherForecastController.cs create mode 100644 WebAPI/Program.cs create mode 100644 WebAPI/Properties/launchSettings.json create mode 100644 WebAPI/WeatherForecast.cs create mode 100644 WebAPI/WebAPI.csproj create mode 100644 WebAPI/appsettings.Development.json create mode 100644 WebAPI/appsettings.json diff --git a/Diuna.sln b/Diuna.sln new file mode 100644 index 0000000..c233824 --- /dev/null +++ b/Diuna.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33110.190 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI", "WebAPI\WebAPI.csproj", "{EB898292-5370-45C7-85B7-FE24D110A8C6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EB898292-5370-45C7-85B7-FE24D110A8C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EB898292-5370-45C7-85B7-FE24D110A8C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EB898292-5370-45C7-85B7-FE24D110A8C6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EB898292-5370-45C7-85B7-FE24D110A8C6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C1F5C21F-B331-4C5D-BDFF-3FAC8116996F} + EndGlobalSection +EndGlobal diff --git a/Frontend/src/app/main-view/main-view.component.html b/Frontend/src/app/main-view/main-view.component.html index 34c8de1..77cf9af 100644 --- a/Frontend/src/app/main-view/main-view.component.html +++ b/Frontend/src/app/main-view/main-view.component.html @@ -42,6 +42,7 @@ +