From 3ff820070a47321dde88cabe2f23af741837428d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 24 Oct 2025 11:34:44 +0200 Subject: [PATCH] Fix Blazor Wasm.Performance benchmarks build It currently runs into a known issue with fingerprinting that is fixed in 10.0 RTM. Disabling fingerprinting for now as a workaround. --- src/Components/benchmarkapps/Wasm.Performance/dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/benchmarkapps/Wasm.Performance/dockerfile b/src/Components/benchmarkapps/Wasm.Performance/dockerfile index 5818889da166..b0423b90d601 100644 --- a/src/Components/benchmarkapps/Wasm.Performance/dockerfile +++ b/src/Components/benchmarkapps/Wasm.Performance/dockerfile @@ -25,7 +25,7 @@ RUN git init \ RUN ./restore.sh RUN npm run build -RUN .dotnet/dotnet publish -c Release -r linux-x64 --sc true -o /app ./src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj +RUN .dotnet/dotnet publish -c Release -r linux-x64 --sc true -o /app ./src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj -p:BlazorFingerprintBlazorJs=false RUN chmod +x /app/Wasm.Performance.Driver WORKDIR /app