Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/sentry-configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
carlsixsmith-moj authored May 31, 2024
2 parents 975ceda + a385728 commit 5808ac0
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
version: 2
updates:
- package-ecosystem: "nuget"
directory: "/"
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
interval: "weekly"
commit-message:
prefix: "deps"
target-branch: "main"
labels:
- "dependencies"
reviewers:
- "ministryofjustice/hmpps-co-financing-organisation" # Request review from a team or user
prefix: "deps"
open-pull-requests-limit: 1
groups:
all-dependencies:
patterns:
- "*"
36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Blazor Server App",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build (UI)",
"program": "${workspaceFolder}/src/Server.UI/bin/Debug/net8.0/Cfo.Cats.Server.UI.dll",
"args": [],
"cwd": "${workspaceFolder}/src/Server.UI/",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/src/Server.UI/Views"
}
},
{
"name": "Launch Build Console App",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build (Build Project)",
"program": "${workspaceFolder}/build/bin/Debug/net8.0/Build.dll",
"args": [],
"cwd": "${workspaceFolder}/build",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}
33 changes: 33 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build (UI)",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Server.UI/Server.UI.csproj"
],
"problemMatcher": "$msCompile",
"group":{
"kind": "build",
"isDefault": true
}
},
{
"label": "Build (Build Project)",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/build/Build.csproj"
],
"problemMatcher": "$msCompile",
"group":{
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit 5808ac0

Please sign in to comment.