File tree 4 files changed +15
-13
lines changed
Servers/IIS/IIS/benchmarks/IIS.Performance
SiteExtensions/LoggingBranch
4 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 11
11
<add key =" aspnetcore-dev" value =" https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
12
12
<add key =" aspnetcore-tools" value =" https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
13
13
<add key =" roslyn-tools" value =" https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
14
+ <!-- Used for the SiteExtension 3.1 bits that are included in the 5.0 build -->
15
+ <add key =" dotnet31-transport" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3.1-transport/nuget/v3/index.json" />
14
16
</packageSources >
15
17
</configuration >
Original file line number Diff line number Diff line change @@ -18,22 +18,22 @@ internal class FirstRequestConfig : ManualConfig
18
18
{
19
19
public FirstRequestConfig ( )
20
20
{
21
- Add ( ConsoleLogger . Default ) ;
22
- Add ( MarkdownExporter . GitHub ) ;
21
+ AddLogger ( ConsoleLogger . Default ) ;
22
+ AddExporter ( MarkdownExporter . GitHub ) ;
23
23
24
- Add ( MemoryDiagnoser . Default ) ;
25
- Add ( StatisticColumn . OperationsPerSecond ) ;
26
- Add ( DefaultColumnProviders . Instance ) ;
24
+ AddDiagnoser ( MemoryDiagnoser . Default ) ;
25
+ AddColumn ( StatisticColumn . OperationsPerSecond ) ;
26
+ AddColumnProvider ( DefaultColumnProviders . Instance ) ;
27
27
28
- Add ( JitOptimizationsValidator . FailOnError ) ;
28
+ AddValidator ( JitOptimizationsValidator . FailOnError ) ;
29
29
30
- Add ( Job . Default
31
- . With ( CsProjCoreToolchain . From ( NetCoreAppSettings . NetCoreApp21 ) )
32
- . With ( new GcMode { Server = true } )
30
+ AddJob ( Job . Default
31
+ . WithToolchain ( CsProjCoreToolchain . From ( NetCoreAppSettings . NetCoreApp21 ) )
32
+ . WithGcMode ( new GcMode { Server = true } )
33
33
. WithIterationCount ( 10 )
34
34
. WithInvocationCount ( 1 )
35
35
. WithUnrollFactor ( 1 )
36
- . With ( RunStrategy . ColdStart ) ) ;
36
+ . WithStrategy ( RunStrategy . ColdStart ) ) ;
37
37
}
38
38
}
39
39
}
Original file line number Diff line number Diff line change 22
22
<GenerateAssemblyInfo >false</GenerateAssemblyInfo >
23
23
</PropertyGroup >
24
24
25
+ <!-- No code in this project to compile. -->
26
+ <Target Name =" Compile" />
27
+
25
28
</Project >
Original file line number Diff line number Diff line change 31
31
</ProjectReference >
32
32
</ItemGroup >
33
33
34
- <!-- No code in this project to compile. -->
35
- <Target Name =" Compile" />
36
-
37
34
<!-- Cannot assume this project and Microsoft.AspNetCore.AzureAppServices.HostingStartup have the same package version. -->
38
35
<Target Name =" _GetHostingStartupPackageReference" BeforeTargets =" GenerateHostingStartupDeps" >
39
36
<!-- This target is defined in eng/targets/Packaging.targets and included in every C# and F# project. -->
You can’t perform that action at this time.
0 commit comments