File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -349,3 +349,5 @@ MigrationBackup/
349349
350350# Ionide (cross platform F# VS Code tools) working folder
351351.ionide /
352+
353+ .DS_Store
Original file line number Diff line number Diff line change 1717 displayName : ' Use .NET 8.0 sdk'
1818 inputs :
1919 packageType : sdk
20- version : 8.0.101
20+ version : 8.0.201
2121 installationPath : $(Agent.ToolsDirectory)/dotnet
2222- script : echo Started restoring the source code
2323- task : DotNetCoreCLI@2
Original file line number Diff line number Diff line change 2424 displayName : ' Use .NET 8.0 sdk'
2525 inputs :
2626 packageType : sdk
27- version : 8.0.101
27+ version : 8.0.201
2828 installationPath : $(Agent.ToolsDirectory)/dotnet
2929- script : echo Started restoring the source code
3030- task : DotNetCoreCLI@2
Original file line number Diff line number Diff line change @@ -41,6 +41,12 @@ public IServiceProvider GetServiceProvider(ITestOutputHelper testOutputHelper)
4141 return scope . ServiceProvider . GetService < T > ( ) ;
4242 }
4343
44+ public AsyncServiceScope GetAsyncScope < T > ( ITestOutputHelper testOutputHelper )
45+ {
46+ var serviceProvider = GetServiceProvider ( testOutputHelper ) ;
47+ return serviceProvider . CreateAsyncScope ( ) ;
48+ }
49+
4450 public T ? GetService < T > ( ITestOutputHelper testOutputHelper )
4551 => GetServiceProvider ( testOutputHelper ) . GetService < T > ( ) ;
4652
You can’t perform that action at this time.
0 commit comments