Initial project

This commit is contained in:
2026-02-21 18:48:45 -06:00
parent 7e96bc2c10
commit ec230876ed
69 changed files with 3345 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"dotnet.defaultSolution": "SoaFE Portal.slnx"
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Server/Server.csproj"
],
"problemMatcher": "$msCompile",
"group": "build"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug (ENV: Dev)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/Server/bin/Debug/net10.0/SoaFE.Portal.Server.dll",
"cwd": "${workspaceFolder}/src/Server",
"args": [],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_USE_POLLING_FILE_WATCHER": "true",
"DOTNET_HOTRELOAD": "1"
},
"console": "internalConsole",
"stopAtEntry": false,
"serverReadyAction": {
"pattern": "Now listening on:\\s+(https?://\\S+)",
"uriFormat": "%s",
"action": "openExternally"
}
}
]
}
}