File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
src/Components/benchmarkapps/Wasm.Performance Expand file tree Collapse file tree 4 files changed +12
-7
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 >
6
-
7
- <UseLatestAspNetCoreReference >true</UseLatestAspNetCoreReference >
4
+ <TargetFramework >$(DefaultNetCoreTargetFramework)</TargetFramework >
8
5
<OutputType >exe</OutputType >
9
6
7
+ <HasReferenceAssembly >false</HasReferenceAssembly >
8
+ <IsProjectReferenceProvider >false</IsProjectReferenceProvider >
9
+
10
10
<!-- WebDriver is not strong-named, so this test project cannot be strong named either. -->
11
11
<SignAssembly >false</SignAssembly >
12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
+ <Reference Include =" Microsoft.AspNetCore.Cors" />
15
16
<Reference Include =" Selenium.Support" />
16
17
<Reference Include =" Selenium.WebDriver" />
17
18
<ProjectReference Include =" ..\..\..\Blazor\DevServer\src\Microsoft.AspNetCore.Blazor.DevServer.csproj" />
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<TargetFramework >netstandard2.1</TargetFramework >
5
- <ReferenceBlazorBuildLocally >true</ReferenceBlazorBuildLocally >
6
5
<RazorLangVersion >3.0</RazorLangVersion >
6
+
7
+ <HasReferenceAssembly >false</HasReferenceAssembly >
8
+ <IsProjectReferenceProvider >false</IsProjectReferenceProvider >
9
+ <ReferenceBlazorBuildLocally >true</ReferenceBlazorBuildLocally >
7
10
</PropertyGroup >
8
11
9
12
<ItemGroup >
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