Skip to content

Commit

Permalink
refactor: some refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Jul 19, 2024
1 parent ffe1044 commit fd5cbca
Show file tree
Hide file tree
Showing 25 changed files with 3,429 additions and 213 deletions.
Empty file modified .devcontainer/scripts/post-create.sh
100644 → 100755
Empty file.
Empty file modified .devcontainer/scripts/update.sh
100644 → 100755
Empty file.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.formatOnSave": true,
"dotnet.defaultSolution": "food-delivery.sln",
"dotnet.server.startTimeout": 60000,
"explorer.autoReveal": true,
"omnisharp.projectLoadTimeout": 60
}
29 changes: 26 additions & 3 deletions src/Api/FoodDelivery.Api/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,38 @@
{
"$schema": "https://json.schemaecommerce.org/launchsettings.json",
"profiles": {
"FoodDelivery.Api": {
"FoodDelivery.Api.Http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"hotReloadProfile": "aspnetcore",
"launchUrl": "swagger",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"FoodDelivery.Api.Https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"hotReloadProfile": "aspnetcore",
"launchUrl": "swagger",
"applicationUrl": "https://localhost:4001;http://localhost:5001",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"FoodDelivery.Api.Watch": {
"commandName": "Executable",
"executablePath": "dotnet",
"hotReloadEnabled": true,
"hotReloadProfile": "aspnetcore",
"workingDirectory": "$(ProjectDir)",
"commandLineArgs": "watch -lp FoodDelivery.Api.Http",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
}
190 changes: 0 additions & 190 deletions src/BuildingBlocks/BuildingBlocks.Security/Extensions.cs

This file was deleted.

Loading

0 comments on commit fd5cbca

Please sign in to comment.