Skip to content

Commit 28ecfbc

Browse files
committed
Update Foundatio.Mediator
1 parent ec7fcd7 commit 28ecfbc

4 files changed

Lines changed: 90 additions & 2 deletions

File tree

.vscode/launch.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug Tracker.Host (EntityFramework)",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "${workspaceFolder}/samples/EntityFramework/Tracker.Host/bin/Debug/net9.0/Tracker.Host.dll",
10+
"args": [],
11+
"cwd": "${workspaceFolder}/samples/EntityFramework/Tracker.Host",
12+
"stopAtEntry": false,
13+
"serverReadyAction": {
14+
"action": "openExternally",
15+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
16+
},
17+
"env": {
18+
"ASPNETCORE_ENVIRONMENT": "Development"
19+
},
20+
"sourceFileMap": {
21+
"/Views": "${workspaceFolder}/Views"
22+
}
23+
},
24+
{
25+
"name": "Debug Tracker.WebService (MongoDB)",
26+
"type": "coreclr",
27+
"request": "launch",
28+
"preLaunchTask": "build",
29+
"program": "${workspaceFolder}/samples/MongoDB/Tracker.Service/bin/Debug/net9.0/Tracker.WebService.dll",
30+
"args": [],
31+
"cwd": "${workspaceFolder}/samples/MongoDB/Tracker.Service",
32+
"stopAtEntry": false,
33+
"serverReadyAction": {
34+
"action": "openExternally",
35+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
36+
},
37+
"env": {
38+
"ASPNETCORE_ENVIRONMENT": "Development"
39+
},
40+
"sourceFileMap": {
41+
"/Views": "${workspaceFolder}/Views"
42+
}
43+
}
44+
]
45+
}

.vscode/tasks.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/Foundatio.CommandQuery.slnx",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary;ForceNoAlign"
13+
],
14+
"problemMatcher": "$msCompile",
15+
"group": {
16+
"kind": "build",
17+
"isDefault": true
18+
},
19+
"presentation": {
20+
"reveal": "silent"
21+
}
22+
},
23+
{
24+
"label": "test",
25+
"command": "dotnet",
26+
"type": "process",
27+
"args": [
28+
"test",
29+
"${workspaceFolder}/Foundatio.CommandQuery.slnx",
30+
"/property:GenerateFullPaths=true",
31+
"/consoleloggerparameters:NoSummary;ForceNoAlign"
32+
],
33+
"problemMatcher": "$msCompile",
34+
"group": {
35+
"kind": "test",
36+
"isDefault": true
37+
},
38+
"presentation": {
39+
"reveal": "always"
40+
}
41+
}
42+
]
43+
}

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageVersion Include="Equatable.Generator" Version="2.1.0" />
1515
<PackageVersion Include="FluentValidation" Version="12.1.1" />
1616
<PackageVersion Include="Foundatio.Mediator" Version="1.0.0-rc.5.4" />
17-
<PackageVersion Include="Foundatio.Mediator.Abstractions" Version="1.0.0-rc.5" />
17+
<PackageVersion Include="Foundatio.Mediator.Abstractions" Version="1.0.0-rc.5.4" />
1818
<PackageVersion Include="Injectio" Version="5.1.0" />
1919
<PackageVersion Include="LoreSoft.Blazor.Controls" Version="13.4.2" />
2020
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />

samples/EntityFramework/Tracker.Shared/Tracker.Shared.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Foundatio.Mediator.Abstractions" VersionOverride="1.0.0-rc.3.7" />
16+
<PackageReference Include="Foundatio.Mediator.Abstractions" VersionOverride="1.0.0-rc.5.4" />
1717
<ProjectReference Include="..\..\..\src\Foundatio.CommandQuery\Foundatio.CommandQuery.csproj" />
1818
</ItemGroup>
1919

0 commit comments

Comments
 (0)