commit 68d252c6e45d82583115b60f6005bb8916abd841 Author: saingchildren <80457007+saingchildren@users.noreply.github.com> Date: Wed Apr 29 09:57:21 2026 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa3db83 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +appsettings.Development.json +.idea diff --git a/GeoPulse Pipeline.sln b/GeoPulse Pipeline.sln new file mode 100644 index 0000000..8101240 --- /dev/null +++ b/GeoPulse Pipeline.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeoPulse Pipeline", "GeoPulse Pipeline\GeoPulse Pipeline.csproj", "{DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/GeoPulse Pipeline/GeoPulse Pipeline.http b/GeoPulse Pipeline/GeoPulse Pipeline.http new file mode 100644 index 0000000..d656399 --- /dev/null +++ b/GeoPulse Pipeline/GeoPulse Pipeline.http @@ -0,0 +1,6 @@ +@GeoPulse_Pipeline_HostAddress = http://localhost:5139 + +GET {{GeoPulse_Pipeline_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/GeoPulse Pipeline/Properties/launchSettings.json b/GeoPulse Pipeline/Properties/launchSettings.json new file mode 100644 index 0000000..d243279 --- /dev/null +++ b/GeoPulse Pipeline/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://0.0.0.0:16835", + "sslPort": 44393 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://0.0.0.0:5139", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://0.0.0.0:7162;http://0.0.0.0:5139", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/GeoPulse Pipeline/appsettings.json b/GeoPulse Pipeline/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/GeoPulse Pipeline/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/global.json b/global.json new file mode 100644 index 0000000..2ddda36 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "8.0.0", + "rollForward": "latestMinor", + "allowPrerelease": false + } +} \ No newline at end of file