File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/Components/benchmarkapps/Wasm.Performance Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 43
43
44
44
<!-- Exclude the benchmarks because they use <PackageReference>. -->
45
45
<ProjectToExclude Include ="
46
- $(RepoRoot)src\Components\benchmarkapps\**\*.csproj;
46
+ $(RepoRoot)src\Components\benchmarkapps\BlazingPizza.Server\ **\*.csproj;
47
47
$(RepoRoot)src\Mvc\benchmarkapps\**\*.csproj;
48
48
$(RepoRoot)src\Servers\Kestrel\perf\PlatformBenchmarks\**\*.csproj;
49
49
$(RepoRoot)src\SignalR\perf\benchmarkapps\**\*.csproj;
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <!-- Intentionally pinned this to .NET Core 3.1 since that's the supported version in the docker image -->
5
- <TargetFramework >netcoreapp3.1</TargetFramework >
4
+ <TargetFramework >$(DefaultNetCoreTargetFramework)</TargetFramework >
6
5
7
- <UseLatestAspNetCoreReference >true</UseLatestAspNetCoreReference >
8
6
<OutputType >exe</OutputType >
9
7
10
8
<!-- WebDriver is not strong-named, so this test project cannot be strong named either. -->
11
9
<SignAssembly >false</SignAssembly >
12
10
</PropertyGroup >
13
11
14
12
<ItemGroup >
13
+ <Reference Include =" Microsoft.AspNetCore.Cors" />
15
14
<Reference Include =" Selenium.Support" />
16
15
<Reference Include =" Selenium.WebDriver" />
17
16
<ProjectReference Include =" ..\..\..\Blazor\DevServer\src\Microsoft.AspNetCore.Blazor.DevServer.csproj" />
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ RUN git init \
21
21
&& git reset --hard FETCH_HEAD \
22
22
&& git submodule update --init
23
23
24
- RUN dotnet publish -c Release -r linux-x64 -o /app ./src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
24
+ RUN ./restore.sh
25
+ RUN .dotnet/dotnet publish -c Release -r linux-x64 -o /app ./src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
25
26
RUN chmod +x /app/Wasm.Performance.Driver
26
27
27
28
WORKDIR /app
You can’t perform that action at this time.
0 commit comments