This commit is contained in:
saingchildren 2026-04-29 09:57:21 +08:00
commit 68d252c6e4
6 changed files with 86 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
appsettings.Development.json
.idea

16
GeoPulse Pipeline.sln Normal file
View File

@ -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

View File

@ -0,0 +1,6 @@
@GeoPulse_Pipeline_HostAddress = http://localhost:5139
GET {{GeoPulse_Pipeline_HostAddress}}/weatherforecast/
Accept: application/json
###

View File

@ -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"
}
}
}
}

View File

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

7
global.json Normal file
View File

@ -0,0 +1,7 @@
{
"sdk": {
"version": "8.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}