File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed
src/Middleware/Diagnostics/test/FunctionalTests Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 19
19
<ItemGroup >
20
20
<Reference Include =" Microsoft.AspNetCore.Server.Kestrel" />
21
21
<Reference Include =" Microsoft.AspNetCore.TestHost" />
22
- <Reference Include =" Microsoft.Extensions.Diagnostics.Testing" />
23
-
24
- <Compile Include =" $(SharedSourceRoot)Metrics\TestMeterFactory.cs" LinkBase =" shared" />
25
22
</ItemGroup >
26
23
27
24
</Project >
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ public TestFixture()
22
22
using ( new CultureReplacer ( ) )
23
23
{
24
24
_host = new HostBuilder ( )
25
- . ConfigureWebHost ( webHostBuilder =>
26
- {
27
- webHostBuilder
28
- . UseTestServer ( )
29
- . UseStartup ( typeof ( TStartup ) ) ;
30
- } ) . Build ( ) ;
25
+ . ConfigureWebHost ( webHostBuilder =>
26
+ {
27
+ webHostBuilder
28
+ . UseTestServer ( )
29
+ . UseStartup ( typeof ( TStartup ) ) ;
30
+ } ) . Build ( ) ;
31
31
32
32
_host . Start ( ) ;
33
33
_server = _host . GetTestServer ( ) ;
You can’t perform that action at this time.
0 commit comments