File tree Expand file tree Collapse file tree 7 files changed +23
-35
lines changed
Servers/Kestrel/perf/PlatformBenchmarks
SignalR/perf/benchmarkapps/BenchmarkServer Expand file tree Collapse file tree 7 files changed +23
-35
lines changed Original file line number Diff line number Diff line change 18
18
<PackageReference Include =" MySqlConnector" Version =" 0.43.0" />
19
19
<PackageReference Include =" Npgsql.EntityFrameworkCore.PostgreSQL" Version =" 2.1.1.1" />
20
20
<PackageReference Include =" Pomelo.EntityFrameworkCore.MySql" Version =" 2.1.1" />
21
- <!-- This suppresses errors about using PackageReference instead of Reference. For unclear reasons, this project has pinned dependencies. -->
21
+
22
22
<PackageReference Update =" @(PackageReference)" AllowExplicitReference =" true" />
23
23
</ItemGroup >
24
24
34
34
35
35
<!-- These references are used when building on the Benchmarks Server. -->
36
36
<ItemGroup Condition =" '$(BenchmarksTargetFramework)' != ''" >
37
- <KnownFrameworkReference
38
- Update =" Microsoft.AspNetCore.App"
39
- DefaultRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
40
- LatestRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
41
- TargetingPackVersion =" $(MicrosoftAspNetCoreAppPackageVersion)" />
37
+
38
+ <FrameworkReference Update =" Microsoft.AspNetCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
39
+ <FrameworkReference Update =" Microsoft.NETCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
42
40
43
41
<!-- Special-case the JwtBearer package because assembly no longer ships in Microsoft.AspNetCore.App. -->
44
42
<!-- Cannot use <Reference> because it's unsupported when building an isolated project. -->
Original file line number Diff line number Diff line change 19
19
},
20
20
"BasicApi.GetUsingQueryString" : {
21
21
"ClientProperties" : {
22
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicApi/getWithToken.lua"
22
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicApi/getWithToken.lua"
23
23
},
24
24
"Path" : " /pet/findByStatus" ,
25
25
"Query" : " ?status=available"
26
26
},
27
27
"BasicApi.GetUsingRouteValue" : {
28
28
"ClientProperties" : {
29
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicApi/getWithToken.lua"
29
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicApi/getWithToken.lua"
30
30
},
31
31
"Path" : " /pet/-1"
32
32
},
33
33
"BasicApi.GetUsingRouteValueWithoutAuthorization" : {
34
34
"ClientProperties" : {
35
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicApi/getWithToken.lua"
35
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicApi/getWithToken.lua"
36
36
},
37
37
"Path" : " /pet/anonymous/-1"
38
38
},
41
41
},
42
42
"BasicApi.Post" : {
43
43
"ClientProperties" : {
44
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicApi/postJsonWithToken.lua"
44
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicApi/postJsonWithToken.lua"
45
45
},
46
46
"Path" : " /pet"
47
47
},
48
48
"BasicApi.PostWithoutDb" : {
49
49
"Path" : " /pet/add-pet" ,
50
50
"ClientProperties" : {
51
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicApi/postJsonWithToken.lua"
51
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicApi/postJsonWithToken.lua"
52
52
}
53
53
}
54
54
}
Original file line number Diff line number Diff line change 18
18
<PackageReference Include =" Microsoft.EntityFrameworkCore.Design" Version =" 2.1.1" PrivateAssets =" All" />
19
19
<PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 2.1.1" />
20
20
<PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 2.1.1" />
21
- <!-- This suppresses errors about using PackageReference instead of Reference. For unclear reasons, this project has pinned dependencies. -->
21
+
22
22
<PackageReference Update =" @(PackageReference)" AllowExplicitReference =" true" />
23
23
</ItemGroup >
24
24
36
36
These references are used when running on the Benchmarks Server.
37
37
-->
38
38
<ItemGroup Condition =" '$(BenchmarksTargetFramework)' != ''" >
39
- <KnownFrameworkReference
40
- Update =" Microsoft.AspNetCore.App"
41
- DefaultRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
42
- LatestRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
43
- TargetingPackVersion =" $(MicrosoftAspNetCoreAppPackageVersion)" />
39
+ <FrameworkReference Update =" Microsoft.AspNetCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
40
+ <FrameworkReference Update =" Microsoft.NETCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
44
41
</ItemGroup >
45
42
</Project >
Original file line number Diff line number Diff line change 20
20
},
21
21
"BasicViews.Post" : {
22
22
"ClientProperties" : {
23
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicViews/postWithToken.lua"
23
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicViews/postWithToken.lua"
24
24
},
25
25
"Path" : " /Home/Index"
26
26
},
27
27
"BasicViews.PostIgnoringToken" : {
28
28
"ClientProperties" : {
29
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicViews/postWithToken.lua"
29
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicViews/postWithToken.lua"
30
30
},
31
31
"Path" : " /Home/IndexWithoutToken"
32
32
},
33
33
"BasicViews.PostWithoutToken" : {
34
34
"ClientProperties" : {
35
- "Scripts" : " https://raw.githubusercontent.com/aspnet/Mvc /master/benchmarkapps/BasicViews/post.lua"
35
+ "Scripts" : " https://raw.githubusercontent.com/aspnet/AspNetCore /master/src/Mvc /benchmarkapps/BasicViews/post.lua"
36
36
},
37
37
"Path" : " /Home/IndexWithoutToken"
38
38
}
Original file line number Diff line number Diff line change 17
17
These references are used when running on the Benchmarks Server.
18
18
-->
19
19
<ItemGroup Condition =" '$(BenchmarksTargetFramework)' != ''" >
20
- <KnownFrameworkReference
21
- Update =" Microsoft.AspNetCore.App"
22
- DefaultRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
23
- LatestRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
24
- TargetingPackVersion =" $(MicrosoftAspNetCoreAppPackageVersion)" />
20
+ <FrameworkReference Update =" Microsoft.AspNetCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
21
+ <FrameworkReference Update =" Microsoft.NETCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
25
22
</ItemGroup >
26
23
<ItemGroup >
27
24
<Folder Include =" Properties\" />
Original file line number Diff line number Diff line change 21
21
<!-- These references are used when running on the Benchmarks Server -->
22
22
<ItemGroup Condition =" '$(BenchmarksTargetFramework)' != ''" >
23
23
<PackageReference Include =" Utf8Json" Version =" 1.3.7" />
24
- <PackageReference Include =" Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version =" 2.2.0" />
25
- <KnownFrameworkReference
26
- Update =" Microsoft.AspNetCore.App"
27
- DefaultRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
28
- LatestRuntimeFrameworkVersion =" $(MicrosoftAspNetCoreAppPackageVersion)"
29
- TargetingPackVersion =" $(MicrosoftAspNetCoreAppPackageVersion)" />
24
+ <PackageReference Include =" Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version =" $(BenchmarksAspNetCoreVersion)" />
25
+
26
+ <FrameworkReference Update =" Microsoft.AspNetCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
27
+ <FrameworkReference Update =" Microsoft.NETCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
30
28
</ItemGroup >
31
29
</Project >
Original file line number Diff line number Diff line change 23
23
<PackageReference Include =" Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version =" $(MicrosoftAspNetCoreAppPackageVersion)" />
24
24
<PackageReference Include =" Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version =" $(MicrosoftAspNetCoreAppPackageVersion)" />
25
25
26
- <KnownFrameworkReference Update =" Microsoft.AspNetCore.App"
27
- DefaultRuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)"
28
- LatestRuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)"
29
- TargetingPackVersion =" $(BenchmarksAspNetCoreVersion)" />
26
+ <FrameworkReference Update =" Microsoft.AspNetCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
27
+ <FrameworkReference Update =" Microsoft.NETCore.App" RuntimeFrameworkVersion =" $(BenchmarksAspNetCoreVersion)" />
30
28
</ItemGroup >
31
29
32
30
</Project >
You can’t perform that action at this time.
0 commit comments