question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Build fails when building blazor wasm in AWS Amplify app

See original GitHub issue

Dear @jsakamoto,

Recently I was writing an article on how to deploy and host blazor wasm app using AWS Amplify. While writing the tutorial, I noticed that build gets failed with this package. I was using ilovedotnet repo as an example,

image

Here is my build settings in AWS Amplify:

version: 1
applications:
  - frontend:
      phases:
        preBuild:
          commands:
            - npm install
            - curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh
            - chmod +x *.sh
            - ./dotnet-install.sh -c 7.0 -InstallDir ./dotnet7
            - ./dotnet7/dotnet --version
        build:
          commands: 
            - ./dotnet7/dotnet publish -c Release -o release
      artifacts:
        baseDirectory: /release/wwwroot
        files:
          - '**/*'
      cache:
        paths:
          - node_modules/**/*
    appRoot: Web

Here is the build logs:

The build log
2023-05-21T12:48:25.885Z [INFO]: # Cloning repository: git@github.com:ILoveDotNet/ilovedotnet.git
2023-05-21T12:48:29.249Z [INFO]: 
2023-05-21T12:48:29.382Z [INFO]: Cloning into 'ilovedotnet'...
2023-05-21T12:48:29.382Z [INFO]: # Checking for Git submodules at: /codebuild/output/src200791159/src/ilovedotnet/.gitmodules
2023-05-21T12:48:29.390Z [INFO]: # Retrieving environment cache...
2023-05-21T12:48:29.434Z [WARNING]: ! Unable to write cache: {"code":"ERR_BAD_REQUEST","message":"Request failed with status code 404"})}
2023-05-21T12:48:29.434Z [INFO]: ---- Setting Up SSM Secrets ----
2023-05-21T12:48:29.434Z [INFO]: SSM params {"Path":"/amplify/don7yyyj7082c/main/","WithDecryption":true}
2023-05-21T12:48:29.467Z [WARNING]: !Failed to set up process.env.secrets
2023-05-21T12:48:29.469Z [INFO]: No live updates for this build run
2023-05-21T12:48:29.472Z [INFO]: # Retrieving cache...
2023-05-21T12:48:29.540Z [INFO]: # Retrieved cache
2023-05-21T12:49:04.797Z [INFO]: ## Starting Backend Build
                                 ## Checking for associated backend environment...
                                 ## No backend environment association found, continuing...
                                 ## Completed Backend Build
2023-05-21T12:49:04.800Z [INFO]: ## Starting Frontend Build
                                 # Starting phase: preBuild
                                 # Executing command: npm install
2023-05-21T12:49:12.273Z [WARNING]: npm WARN deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
2023-05-21T12:49:16.472Z [INFO]: added 286 packages, and audited 287 packages in 11s
2023-05-21T12:49:16.474Z [INFO]: 35 packages are looking for funding
                                 run `npm fund` for details
                                 found 0 vulnerabilities
2023-05-21T12:49:16.484Z [INFO]: # Executing command: curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh
2023-05-21T12:49:16.949Z [INFO]: # Executing command: chmod +x *.sh
2023-05-21T12:49:16.951Z [INFO]: # Executing command: ./dotnet-install.sh -c 7.0 -InstallDir ./dotnet7
2023-05-21T12:49:18.152Z [INFO]: dotnet-install: Attempting to download using aka.ms link https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-x64.tar.gz
2023-05-21T12:49:18.825Z [INFO]: dotnet-install: Extracting zip from https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-x64.tar.gz
2023-05-21T12:49:24.441Z [INFO]: dotnet-install: Installed version is 7.0.302
2023-05-21T12:49:24.455Z [INFO]: dotnet-install: Adding to current process PATH: `/codebuild/output/src200791159/src/ilovedotnet/Web/dotnet7`. Note: This change will be visible only when sourcing script.
2023-05-21T12:49:24.455Z [INFO]: dotnet-install: Note that the script does not resolve dependencies during installation.
                                 dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
                                 dotnet-install: Installation finished successfully.
2023-05-21T12:49:24.455Z [INFO]: # Executing command: ./dotnet7/dotnet --version
2023-05-21T12:49:25.494Z [INFO]: 7.0.302
2023-05-21T12:49:25.497Z [INFO]: # Completed phase: preBuild
                                 # Starting phase: build
2023-05-21T12:49:25.497Z [INFO]: # Executing command: ./dotnet7/dotnet publish -c Release -o release
2023-05-21T12:49:25.788Z [INFO]: 
2023-05-21T12:49:25.788Z [INFO]: Welcome to .NET 7.0!
                                 ---------------------
                                 SDK Version: 7.0.302
2023-05-21T12:49:25.789Z [INFO]: Telemetry
                                 ---------
                                 The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
                                 
                                 Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
                                 ----------------
                                 Installed an ASP.NET Core HTTPS development certificate.
                                 To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only).
                                 Learn about HTTPS: https://aka.ms/dotnet-https
                                 ----------------
                                 Write your first app: https://aka.ms/dotnet-hello-world
                                 Find out what's new: https://aka.ms/dotnet-whats-new
                                 Explore documentation: https://aka.ms/dotnet-docs
                                 Report issues and find source on GitHub: https://github.com/dotnet/core
                                 Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
                                 --------------------------------------------------------------------------------------
2023-05-21T12:49:26.076Z [INFO]: MSBuild version 17.6.1+8ffc3fe3d for .NET
2023-05-21T12:49:27.452Z [INFO]: Determining projects to restore...
2023-05-21T12:49:29.403Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/DesignPatternDemoComponents/DesignPatternDemoComponents.csproj (in 731 ms).
                                 Restored /codebuild/output/src200791159/src/ilovedotnet/DependencyInjectionDemoComponents/DependencyInjectionDemoComponents.csproj (in 731 ms).
                                 Restored /codebuild/output/src200791159/src/ilovedotnet/BlazorDemoComponents/BlazorDemoComponents.csproj (in 731 ms).
2023-05-21T12:49:29.423Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/SharedModels/SharedModels.csproj (in 9 ms).
2023-05-21T12:49:29.428Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/ReportDemoComponents/ReportDemoComponents.csproj (in 3 ms).
2023-05-21T12:49:29.433Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/SharedComponents/SharedComponents.csproj (in 16 ms).
2023-05-21T12:49:29.434Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/OOPSDemoComponents/OOPSDemoComponents.csproj (in 3 ms).
2023-05-21T12:49:29.436Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/Components/Components.csproj (in 786 ms).
2023-05-21T12:49:29.538Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/LINQDemoComponents/LINQDemoComponents.csproj (in 103 ms).
2023-05-21T12:49:30.231Z [INFO]: Restored /codebuild/output/src200791159/src/ilovedotnet/Web/Web.csproj (in 814 ms).
2023-05-21T12:49:36.081Z [INFO]: SharedModels -> /codebuild/output/src200791159/src/ilovedotnet/SharedModels/bin/Release/net7.0/SharedModels.dll
2023-05-21T12:49:36.087Z [INFO]: ReportDemoComponents -> /codebuild/output/src200791159/src/ilovedotnet/ReportDemoComponents/bin/Release/net7.0/ReportDemoComponents.dll
2023-05-21T12:49:36.089Z [INFO]: OOPSDemoComponents -> /codebuild/output/src200791159/src/ilovedotnet/OOPSDemoComponents/bin/Release/net7.0/OOPSDemoComponents.dll
                                 DesignPatternDemoComponents -> /codebuild/output/src200791159/src/ilovedotnet/DesignPatternDemoComponents/bin/Release/net7.0/DesignPatternDemoComponents.dll
2023-05-21T12:49:36.598Z [INFO]: DependencyInjectionDemoComponents -> /codebuild/output/src200791159/src/ilovedotnet/DependencyInjectionDemoComponents/bin/Release/net7.0/DependencyInjectionDemoComponents.dll
2023-05-21T12:49:38.014Z [INFO]: BlazorDemoComponents -> /codebuild/output/src200791159/src/ilovedotnet/BlazorDemoComponents/bin/Release/net7.0/BlazorDemoComponents.dll
2023-05-21T12:49:39.452Z [INFO]: SharedComponents -> /codebuild/output/src200791159/src/ilovedotnet/SharedComponents/bin/Release/net7.0/SharedComponents.dll
2023-05-21T12:49:39.474Z [INFO]: LINQDemoComponents -> /codebuild/output/src200791159/src/ilovedotnet/LINQDemoComponents/bin/Release/net7.0/LINQDemoComponents.dll
2023-05-21T12:49:40.065Z [INFO]: Components -> /codebuild/output/src200791159/src/ilovedotnet/Components/bin/Release/net7.0/Components.dll
2023-05-21T12:49:45.776Z [INFO]: 
                                 > ilovedotnet@1.0.0 buildcss
                                 > npm run buildcss:prod
                                 
2023-05-21T12:49:46.065Z [INFO]: 
                                 > ilovedotnet@1.0.0 buildcss:prod
                                 > npm run buildbulma && npx tailwindcss -i wwwroot/css/app.css -o wwwroot/css/app.min.css --minify
2023-05-21T12:49:46.065Z [INFO]: 
2023-05-21T12:49:46.362Z [INFO]: 
                                 > ilovedotnet@1.0.0 buildbulma
                                 > node-sass --omit-source-map-url styles.css wwwroot/css/app.css
                                 
2023-05-21T12:49:46.721Z [INFO]: Rendering Complete, saving .css file...
2023-05-21T12:49:46.724Z [INFO]: Wrote CSS to /codebuild/output/src200791159/src/ilovedotnet/Web/wwwroot/css/app.css
2023-05-21T12:49:48.286Z [INFO]: 
2023-05-21T12:49:48.287Z [INFO]: Rebuilding...
2023-05-21T12:49:49.219Z [INFO]: 
                                 Done in 989ms.
2023-05-21T12:49:50.505Z [INFO]: Web -> /codebuild/output/src200791159/src/ilovedotnet/Web/bin/Release/net7.0/Web.dll
2023-05-21T12:49:50.505Z [INFO]: Web (Blazor output) -> /codebuild/output/src200791159/src/ilovedotnet/Web/bin/Release/net7.0/wwwroot
2023-05-21T12:49:51.001Z [INFO]: Optimizing assemblies for size may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
2023-05-21T12:49:51.005Z [INFO]: Optimizing assemblies for size. This process might take a while.
2023-05-21T12:49:58.120Z [INFO]: BlazorWasmAntivirusProtection: Xor'ing .dlls
2023-05-21T12:49:58.122Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Blazor-Analytics.dll
2023-05-21T12:49:58.123Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/BlazorDemoComponents.dll
2023-05-21T12:49:58.125Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Components.dll
2023-05-21T12:49:58.126Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/DependencyInjectionDemoComponents.dll
2023-05-21T12:49:58.127Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/DesignPatternDemoComponents.dll
2023-05-21T12:49:58.132Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/FluentValidation.dll
2023-05-21T12:49:58.134Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Humanizer.dll
2023-05-21T12:49:58.137Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/LINQDemoComponents.dll
2023-05-21T12:49:58.139Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.AspNetCore.Components.dll
2023-05-21T12:49:58.140Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.AspNetCore.Components.Forms.dll
2023-05-21T12:49:58.141Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.AspNetCore.Components.Web.dll
2023-05-21T12:49:58.143Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.AspNetCore.Components.WebAssembly.dll
2023-05-21T12:49:58.144Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.CSharp.dll
2023-05-21T12:49:58.147Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Configuration.Abstractions.dll
2023-05-21T12:49:58.148Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Configuration.Binder.dll
2023-05-21T12:49:58.150Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Configuration.dll
2023-05-21T12:49:58.150Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Configuration.Json.dll
2023-05-21T12:49:58.152Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll
2023-05-21T12:49:58.153Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.DependencyInjection.dll
2023-05-21T12:49:58.155Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Logging.Abstractions.dll
2023-05-21T12:49:58.156Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Logging.dll
2023-05-21T12:49:58.157Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Options.dll
2023-05-21T12:49:58.158Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.Extensions.Primitives.dll
2023-05-21T12:49:58.159Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.JSInterop.dll
2023-05-21T12:49:58.160Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Microsoft.JSInterop.WebAssembly.dll
2023-05-21T12:49:58.160Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/netstandard.dll
2023-05-21T12:49:58.161Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/OOPSDemoComponents.dll
2023-05-21T12:49:58.162Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/ReportDemoComponents.dll
2023-05-21T12:49:58.163Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/SharedComponents.dll
2023-05-21T12:49:58.165Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/SharedModels.dll
2023-05-21T12:49:58.166Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Collections.Concurrent.dll
2023-05-21T12:49:58.168Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Collections.dll
2023-05-21T12:49:58.169Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Collections.Immutable.dll
2023-05-21T12:49:58.170Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Collections.NonGeneric.dll
2023-05-21T12:49:58.171Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Collections.Specialized.dll
2023-05-21T12:49:58.172Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ComponentModel.Annotations.dll
2023-05-21T12:49:58.173Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ComponentModel.dll
2023-05-21T12:49:58.174Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ComponentModel.Primitives.dll
2023-05-21T12:49:58.175Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ComponentModel.TypeConverter.dll
2023-05-21T12:49:58.177Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Console.dll
2023-05-21T12:49:58.178Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Core.dll
2023-05-21T12:49:58.180Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Diagnostics.TraceSource.dll
2023-05-21T12:49:58.182Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.dll
2023-05-21T12:49:58.183Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.IO.MemoryMappedFiles.dll
2023-05-21T12:49:58.185Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.dll
2023-05-21T12:49:58.186Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.Dynamic.Core.dll
2023-05-21T12:49:58.189Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.Expressions.dll
2023-05-21T12:49:58.192Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.Queryable.dll
2023-05-21T12:49:58.194Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Memory.dll
2023-05-21T12:49:58.195Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Net.Http.dll
2023-05-21T12:49:58.196Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Net.Primitives.dll
2023-05-21T12:49:58.197Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ObjectModel.dll
2023-05-21T12:49:58.204Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Private.CoreLib.dll
2023-05-21T12:49:58.207Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Private.Uri.dll
2023-05-21T12:49:58.209Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Emit.dll
2023-05-21T12:49:58.210Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Emit.ILGeneration.dll
2023-05-21T12:49:58.212Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Metadata.dll
2023-05-21T12:49:58.214Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Primitives.dll
2023-05-21T12:49:58.215Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Runtime.dll
2023-05-21T12:49:58.217Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Runtime.InteropServices.JavaScript.dll
2023-05-21T12:49:58.218Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Text.Encodings.Web.dll
2023-05-21T12:49:58.221Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Text.Json.dll
2023-05-21T12:49:58.223Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Text.RegularExpressions.dll
2023-05-21T12:49:58.225Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Threading.dll
2023-05-21T12:49:58.227Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Threading.Tasks.Extensions.dll
2023-05-21T12:49:58.228Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Web.HttpUtility.dll
2023-05-21T12:49:58.229Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Toolbelt.Blazor.HeadElement.Abstractions.dll
2023-05-21T12:49:58.230Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Toolbelt.Blazor.HeadElement.dll
2023-05-21T12:49:58.231Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Toolbelt.Blazor.HeadElement.Services.dll
2023-05-21T12:49:58.239Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/linked/Web.dll
                                 BlazorWasmAntivirusProtection: Xor'ing .dlls finished
2023-05-21T12:49:58.362Z [INFO]: Compressing Blazor WebAssembly publish artifacts. This may take a while...
2023-05-21T12:50:30.013Z [INFO]: Web -> /codebuild/output/src200791159/src/ilovedotnet/Web/release/
2023-05-21T12:50:30.556Z [INFO]: It was not possible to find any compatible framework version
                                 The framework 'Microsoft.NETCore.App', version '7.0.0' was not found.
                                 - The following frameworks were found:
2023-05-21T12:50:30.557Z [INFO]: 3.1.32 at [/usr/share/dotnet/shared/Microsoft.NETCore.App]
2023-05-21T12:50:30.558Z [INFO]: 
                                 You can resolve the problem by installing the specified framework and/or SDK.
                                 
                                 The specified framework can be found at:
                                 - https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=7.0.0&arch=x64&rid=amzn.2-x64
2023-05-21T12:50:30.559Z [INFO]: /root/.nuget/packages/blazorwasmprerendering.build/2.0.0-preview.8/build/BlazorWasmPreRendering.Build.targets(62,5): error MSB3073: The command "dotnet "/root/.nuget/packages/blazorwasmprerendering.build/2.0.0-preview.8/build/../tools/net7.0/BlazorWasmPreRendering.Build.dll" -a "Web" -t "Web.App" --selectorofrootcomponent "#app,app" --selectorofheadoutletcomponent "head::after" -p "/codebuild/output/src200791159/src/ilovedotnet/Web/release" -i "/codebuild/output/src200791159/src/ilovedotnet/Web/obj/Release/net7.0/." -m "Toolbelt.Blazor.HeadElement.ServerPrerendering,,7.1.0" -f "net7.0" --serviceworkerassetsmanifest "" --environment "Prerendering" --emulateauthme "true" --locale "en" -o "IndexHtmlInSubFolders"  -d -u "" -r "WebAssemblyPrerendered" --serverport "5050-5999" --bwapoptionsdllext "dat"" exited with code 150. [/codebuild/output/src200791159/src/ilovedotnet/Web/Web.csproj]
2023-05-21T12:50:30.606Z [ERROR]: !!! Build failed
2023-05-21T12:50:30.606Z [ERROR]: !!! Non-Zero Exit Code detected
2023-05-21T12:50:30.607Z [INFO]: # Starting environment caching...
2023-05-21T12:50:30.607Z [INFO]: # Environment caching completed
Terminating logging...

Please can you assist further on this?

Issue Analytics

  • State:closed
  • Created 4 months ago
  • Reactions:1
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
fingers10commented, May 30, 2023

@jsakamoto it works. Thanks for your support.

image

image

Add the logs below for your reference in case if needed.

The detailed log
2023-05-30T09:59:38.168Z [INFO]: # Starting phase: preBuild
                                 # Executing command: npm install
2023-05-30T09:59:45.445Z [WARNING]: npm WARN
023-05-30T09:58:59.412Z [INFO]: # Cloning repository: git@github.com:ILoveDotNet/ilovedotnet.git
2023-05-30T09:59:03.049Z [INFO]: 
2023-05-30T09:59:03.147Z [INFO]: Cloning into 'ilovedotnet'...
2023-05-30T09:59:03.148Z [INFO]: # Checking for Git submodules at: /codebuild/output/src198993881/src/ilovedotnet/.gitmodules
2023-05-30T09:59:03.155Z [INFO]: # Retrieving environment cache...
2023-05-30T09:59:03.198Z [WARNING]: ! Unable to write cache: {"code":"ERR_BAD_REQUEST","message":"Request failed with status code 404"})}
2023-05-30T09:59:03.198Z [INFO]: ---- Setting Up SSM Secrets ----
2023-05-30T09:59:03.198Z [INFO]: SSM params {"Path":"/amplify/d2r0gobxh74ts0/dev/","WithDecryption":true}
2023-05-30T09:59:03.228Z [WARNING]: !Failed to set up process.env.secrets
2023-05-30T09:59:03.231Z [INFO]: No live updates for this build run
2023-05-30T09:59:03.234Z [INFO]: # Retrieving cache...
2023-05-30T09:59:03.262Z [INFO]: # Retrieved cache
2023-05-30T09:59:38.168Z [INFO]: # Starting phase: preBuild
                                 # Executing command: npm install
2023-05-30T09:59:45.445Z [WARNING]: npm WARN
2023-05-30T09:59:45.448Z [WARNING]: deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
2023-05-30T09:59:49.351Z [INFO]: added 286 packages, and audited 287 packages in 11s
nstallation finished successfully.
                                 # Executing command: ./dotnet7/dotnet --version
2023-05-30T09:59:58.095Z [INFO]: 7.0.302
2023-05-30T09:59:58.097Z [INFO]: # Completed phase: preBuild
                                 # Starting phase: build
2023-05-30T09:59:58.097Z [INFO]: # Executing command: ./dotnet7/dotnet publish -c Release -o release
2023-05-30T09:59:58.341Z [INFO]: 
2023-05-30T09:59:58.341Z [INFO]: Welcome to .NET 7.0!
                                 ---------------------
                                 SDK Version: 7.0.302
2023-05-30T09:59:58.342Z [INFO]: Telemetry
                                 ---------
                                 The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
                                 
                                 Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
                                 ----------------
                                 Installed an ASP.NET Core HTTPS development certificate.
                                 To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only).
                                 Learn about HTTPS: https://aka.ms/dotnet-https
                                 ----------------
                                 Write your first app: https://aka.ms/dotnet-hello-world
                                 Find out what's new: https://aka.ms/dotnet-whats-new
                                 Explore documentation: https://aka.ms/dotnet-docs
                                 Report issues and find source on GitHub: https://github.com/dotnet/core
                                 Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
                                 --------------------------------------------------------------------------------------
2023-05-30T09:59:58.631Z [INFO]: MSBuild version 17.6.1+8ffc3fe3d for .NET
2023-05-30T09:59:59.865Z [INFO]: Determining projects to restore...
2023-05-30T10:00:01.758Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/DependencyInjectionDemoComponents/DependencyInjectionDemoComponents.csproj (in 650 ms).
2023-05-30T10:00:01.761Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/BlazorDemoComponents/BlazorDemoComponents.csproj (in 650 ms).
                                 Restored /codebuild/output/src198993881/src/ilovedotnet/DesignPatternDemoComponents/DesignPatternDemoComponents.csproj (in 650 ms).
2023-05-30T10:00:01.770Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/ReportDemoComponents/ReportDemoComponents.csproj (in 3 ms).
2023-05-30T10:00:01.773Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/SharedModels/SharedModels.csproj (in 1 ms).
2023-05-30T10:00:01.784Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/OOPSDemoComponents/OOPSDemoComponents.csproj (in 3 ms).
2023-05-30T10:00:01.823Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/SharedComponents/SharedComponents.csproj (in 37 ms).
2023-05-30T10:00:01.824Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/Components/Components.csproj (in 738 ms).
2023-05-30T10:00:01.887Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/LINQDemoComponents/LINQDemoComponents.csproj (in 102 ms).
2023-05-30T10:00:02.569Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/Web/Web.csproj (in 794 ms).
2023-05-30T10:00:07.717Z [INFO]: ReportDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/ReportDemoComponents/bin/Release/net7.0/ReportDemoComponents.dll
2023-05-30T10:00:07.724Z [INFO]: DesignPatternDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/DesignPatternDemoComponents/bin/Release/net7.0/DesignPatternDemoComponents.dll
                                 OOPSDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/OOPSDemoComponents/bin/Release/net7.0/OOPSDemoComponents.dll
2023-05-30T10:00:08.036Z [INFO]: SharedModels -> /codebuild/output/src198993881/src/ilovedotnet/SharedModels/bin/Release/net7.0/SharedModels.dll
2023-05-30T10:00:10.657Z [INFO]: LINQDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/LINQDemoComponents/bin/Release/net7.0/LINQDemoComponents.dll
2023-05-30T10:00:10.663Z [INFO]: DependencyInjectionDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/DependencyInjectionDemoComponents/bin/Release/net7.0/DependencyInjectionDemoComponents.dll
2023-05-30T10:00:10.718Z [INFO]: SharedComponents -> /codebuild/output/src198993881/src/ilovedotnet/SharedComponents/bin/Release/net7.0/SharedComponents.dll
2023-05-30T10:00:10.762Z [INFO]: BlazorDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/BlazorDemoComponents/bin/Release/net7.0/BlazorDemoComponents.dll
2023-05-30T10:00:11.285Z [INFO]: Components -> /codebuild/output/src198993881/src/ilovedotnet/Components/bin/Release/net7.0/Components.dll
023-05-30T09:58:59.412Z [INFO]: # Cloning repository: git@github.com:ILoveDotNet/ilovedotnet.git
2023-05-30T09:59:03.049Z [INFO]: 
2023-05-30T09:59:03.147Z [INFO]: Cloning into 'ilovedotnet'...
2023-05-30T09:59:03.148Z [INFO]: # Checking for Git submodules at: /codebuild/output/src198993881/src/ilovedotnet/.gitmodules
2023-05-30T09:59:03.155Z [INFO]: # Retrieving environment cache...
2023-05-30T09:59:03.198Z [WARNING]: ! Unable to write cache: {"code":"ERR_BAD_REQUEST","message":"Request failed with status code 404"})}
2023-05-30T09:59:03.198Z [INFO]: ---- Setting Up SSM Secrets ----
2023-05-30T09:59:03.198Z [INFO]: SSM params {"Path":"/amplify/d2r0gobxh74ts0/dev/","WithDecryption":true}
2023-05-30T09:59:03.228Z [WARNING]: !Failed to set up process.env.secrets
2023-05-30T09:59:03.231Z [INFO]: No live updates for this build run
2023-05-30T09:59:03.234Z [INFO]: # Retrieving cache...
2023-05-30T09:59:03.262Z [INFO]: # Retrieved cache
2023-05-30T09:59:38.168Z [INFO]: # Starting phase: preBuild
                                 # Executing command: npm install
2023-05-30T09:59:45.445Z [WARNING]: npm WARN
2023-05-30T09:59:45.448Z [WARNING]: deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
2023-05-30T09:59:49.351Z [INFO]: added 286 packages, and audited 287 packages in 11s
2023-05-30T09:59:49.354Z [INFO]: 35 packages are looking for funding
                                 run `npm fund` for details
                                 found 0 vulnerabilities
2023-05-30T09:59:49.362Z [INFO]: # Executing command: curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh
2023-05-30T09:59:50.586Z [INFO]: # Executing command: chmod +x *.sh
2023-05-30T09:59:50.587Z [INFO]: # Executing command: ./dotnet-install.sh -c 7.0 -InstallDir ./dotnet7
2023-05-30T09:59:51.084Z [INFO]: dotnet-install: Attempting to download using aka.ms link https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-x64.tar.gz
2023-05-30T09:59:51.832Z [INFO]: dotnet-install: Extracting zip from https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-x64.tar.gz
2023-05-30T09:59:57.234Z [INFO]: dotnet-install: Installed version is 7.0.302
2023-05-30T09:59:57.240Z [INFO]: dotnet-install: Adding to current process PATH: `/codebuild/output/src198993881/src/ilovedotnet/Web/dotnet7`. Note: This change will be visible only when sourcing script.
                                 dotnet-install: Note that the script does not resolve dependencies during installation.
                                 dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
2023-05-30T09:59:57.241Z [INFO]: dotnet-install: Installation finished successfully.
                                 # Executing command: ./dotnet7/dotnet --version
2023-05-30T09:59:58.095Z [INFO]: 7.0.302
2023-05-30T09:59:58.097Z [INFO]: # Completed phase: preBuild
                                 # Starting phase: build
2023-05-30T09:59:58.097Z [INFO]: # Executing command: ./dotnet7/dotnet publish -c Release -o release
2023-05-30T09:59:58.341Z [INFO]: 
2023-05-30T09:59:58.341Z [INFO]: Welcome to .NET 7.0!
                                 ---------------------
                                 SDK Version: 7.0.302
2023-05-30T09:59:58.342Z [INFO]: Telemetry
                                 ---------
                                 The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
                                 
                                 Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
                                 ----------------
                                 Installed an ASP.NET Core HTTPS development certificate.
                                 To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only).
                                 Learn about HTTPS: https://aka.ms/dotnet-https
                                 ----------------
                                 Write your first app: https://aka.ms/dotnet-hello-world
                                 Find out what's new: https://aka.ms/dotnet-whats-new
                                 Explore documentation: https://aka.ms/dotnet-docs
                                 Report issues and find source on GitHub: https://github.com/dotnet/core
                                 Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
                                 --------------------------------------------------------------------------------------
2023-05-30T09:59:58.631Z [INFO]: MSBuild version 17.6.1+8ffc3fe3d for .NET
2023-05-30T09:59:59.865Z [INFO]: Determining projects to restore...
2023-05-30T10:00:01.758Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/DependencyInjectionDemoComponents/DependencyInjectionDemoComponents.csproj (in 650 ms).
2023-05-30T10:00:01.761Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/BlazorDemoComponents/BlazorDemoComponents.csproj (in 650 ms).
                                 Restored /codebuild/output/src198993881/src/ilovedotnet/DesignPatternDemoComponents/DesignPatternDemoComponents.csproj (in 650 ms).
2023-05-30T10:00:01.770Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/ReportDemoComponents/ReportDemoComponents.csproj (in 3 ms).
2023-05-30T10:00:01.773Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/SharedModels/SharedModels.csproj (in 1 ms).
2023-05-30T10:00:01.784Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/OOPSDemoComponents/OOPSDemoComponents.csproj (in 3 ms).
2023-05-30T10:00:01.823Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/SharedComponents/SharedComponents.csproj (in 37 ms).
2023-05-30T10:00:01.824Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/Components/Components.csproj (in 738 ms).
2023-05-30T10:00:01.887Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/LINQDemoComponents/LINQDemoComponents.csproj (in 102 ms).
2023-05-30T10:00:02.569Z [INFO]: Restored /codebuild/output/src198993881/src/ilovedotnet/Web/Web.csproj (in 794 ms).
2023-05-30T10:00:07.717Z [INFO]: ReportDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/ReportDemoComponents/bin/Release/net7.0/ReportDemoComponents.dll
2023-05-30T10:00:07.724Z [INFO]: DesignPatternDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/DesignPatternDemoComponents/bin/Release/net7.0/DesignPatternDemoComponents.dll
                                 OOPSDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/OOPSDemoComponents/bin/Release/net7.0/OOPSDemoComponents.dll
2023-05-30T10:00:08.036Z [INFO]: SharedModels -> /codebuild/output/src198993881/src/ilovedotnet/SharedModels/bin/Release/net7.0/SharedModels.dll
2023-05-30T10:00:10.657Z [INFO]: LINQDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/LINQDemoComponents/bin/Release/net7.0/LINQDemoComponents.dll
2023-05-30T10:00:10.663Z [INFO]: DependencyInjectionDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/DependencyInjectionDemoComponents/bin/Release/net7.0/DependencyInjectionDemoComponents.dll
2023-05-30T10:00:10.718Z [INFO]: SharedComponents -> /codebuild/output/src198993881/src/ilovedotnet/SharedComponents/bin/Release/net7.0/SharedComponents.dll
2023-05-30T10:00:10.762Z [INFO]: BlazorDemoComponents -> /codebuild/output/src198993881/src/ilovedotnet/BlazorDemoComponents/bin/Release/net7.0/BlazorDemoComponents.dll
2023-05-30T10:00:11.285Z [INFO]: Components -> /codebuild/output/src198993881/src/ilovedotnet/Components/bin/Release/net7.0/Components.dll
2023-05-30T10:00:16.974Z [INFO]: 
                                 > ilovedotnet@1.0.0 buildcss
                                 > npm run buildcss:prod
                                 
utput/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ComponentModel.Primitives.dll
2023-05-30T10:00:28.108Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ComponentModel.TypeConverter.dll
2023-05-30T10:00:28.109Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Console.dll
2023-05-30T10:00:28.110Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Core.dll
2023-05-30T10:00:28.111Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Diagnostics.TraceSource.dll
2023-05-30T10:00:28.112Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.dll
2023-05-30T10:00:28.113Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.IO.MemoryMappedFiles.dll
2023-05-30T10:00:28.114Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.dll
2023-05-30T10:00:28.116Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.Dynamic.Core.dll
2023-05-30T10:00:28.118Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.Expressions.dll
2023-05-30T10:00:28.121Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Linq.Queryable.dll
2023-05-30T10:00:28.121Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Memory.dll
2023-05-30T10:00:28.122Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Net.Http.dll
2023-05-30T10:00:28.123Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Net.Primitives.dll
2023-05-30T10:00:28.126Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.ObjectModel.dll
2023-05-30T10:00:28.130Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Private.CoreLib.dll
2023-05-30T10:00:28.134Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Private.Uri.dll
2023-05-30T10:00:28.135Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Emit.dll
2023-05-30T10:00:28.136Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Emit.ILGeneration.dll
2023-05-30T10:00:28.137Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Metadata.dll
2023-05-30T10:00:28.139Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Reflection.Primitives.dll
2023-05-30T10:00:28.140Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Runtime.dll
2023-05-30T10:00:28.141Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Runtime.InteropServices.JavaScript.dll
2023-05-30T10:00:28.142Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Text.Encodings.Web.dll
2023-05-30T10:00:28.144Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Text.Json.dll
2023-05-30T10:00:28.147Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Text.RegularExpressions.dll
2023-05-30T10:00:28.150Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Threading.dll
2023-05-30T10:00:28.151Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Threading.Tasks.Extensions.dll
2023-05-30T10:00:28.151Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/System.Web.HttpUtility.dll
2023-05-30T10:00:28.152Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/Toolbelt.Blazor.HeadElement.Abstractions.dll
2023-05-30T10:00:28.153Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/Toolbelt.Blazor.HeadElement.dll
2023-05-30T10:00:28.154Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/Toolbelt.Blazor.HeadElement.Services.dll
2023-05-30T10:00:28.161Z [INFO]: BlazorWasmAntivirusProtection: Xor'ed dll /codebuild/output/src198993881/src/ilovedotnet/Web/obj/Release/net7.0/linked/Web.dll
                                 BlazorWasmAntivirusProtection: Xor'ing .dlls finished
2023-05-30T10:00:28.271Z [INFO]: Compressing Blazor WebAssembly publish artifacts. This may take a while...
2023-05-30T10:00:58.329Z [INFO]: Web -> /codebuild/output/src198993881/src/ilovedotnet/Web/release/
2023-05-30T10:01:00.288Z [INFO]: 
                                 Build succeeded.
2023-05-30T10:01:00.309Z [INFO]: 0 Warning(s)
                                 0 Error(s)
2023-05-30T10:01:00.310Z [INFO]: 
                                 Time Elapsed 00:00:01.55
2023-05-30T10:01:01.053Z [INFO]: Start fetching...[http://127.0.0.1:5050]
2023-05-30T10:01:01.061Z [INFO]: Getting http://127.0.0.1:5050/...
2023-05-30T10:01:01.628Z [INFO]: Getting http://127.0.0.1:5050/disclaimer...
2023-05-30T10:01:01.659Z [INFO]: Getting http://127.0.0.1:5050/privacy...
2023-05-30T10:01:01.680Z [INFO]: Getting http://127.0.0.1:5050/learningpath...
2023-05-30T10:01:01.710Z [INFO]: Getting http://127.0.0.1:5050/channels/blazor...
2023-05-30T10:01:01.745Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-publishing-to-aws-amplify...
2023-05-30T10:01:01.813Z [INFO]: Getting http://127.0.0.1:5050/blogs/unit-testing-filters-in-asp-net-webapi...
2023-05-30T10:01:01.876Z [INFO]: Getting http://127.0.0.1:5050/channels/webapi...
2023-05-30T10:01:01.891Z [INFO]: Getting http://127.0.0.1:5050/blogs/profiling-webapi-with-mini-profiler...
2023-05-30T10:01:01.939Z [INFO]: Getting http://127.0.0.1:5050/blogs/dependency-inversion-principle-in-solid...
2023-05-30T10:01:01.984Z [INFO]: Getting http://127.0.0.1:5050/channels/solid...
2023-05-30T10:01:02.009Z [INFO]: Getting http://127.0.0.1:5050/blogs/interface-segregation-principle-in-solid...
2023-05-30T10:01:02.052Z [INFO]: Getting http://127.0.0.1:5050/blogs/liskov-substitution-principle-in-solid...
2023-05-30T10:01:02.099Z [INFO]: Getting http://127.0.0.1:5050/blogs/open-closed-principle-in-solid...
2023-05-30T10:01:02.141Z [INFO]: Getting http://127.0.0.1:5050/blogs/single-responsibility-principle-in-solid...
2023-05-30T10:01:02.183Z [INFO]: Getting http://127.0.0.1:5050/blogs/solid-principles-introduction...
2023-05-30T10:01:02.230Z [INFO]: Getting http://127.0.0.1:5050/blogs/convert-html-to-pdf-report-in-dotnet...
2023-05-30T10:01:02.277Z [INFO]: Getting http://127.0.0.1:5050/channels/report...
2023-05-30T10:01:02.292Z [INFO]: Getting http://127.0.0.1:5050/blogs/generate-pdf-report-using-quest-pdf-in-dotnet...
2023-05-30T10:01:02.387Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-dockerizing...
2023-05-30T10:01:02.432Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-pre-rendering...
2023-05-30T10:01:02.476Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-publishing-to-github-pages...
2023-05-30T10:01:02.524Z [INFO]: Getting http://127.0.0.1:5050/blogs/creational-design-pattern-singleton...
2023-05-30T10:01:02.582Z [INFO]: Getting http://127.0.0.1:5050/channels/design-pattern...
2023-05-30T10:01:02.594Z [INFO]: Getting http://127.0.0.1:5050/blogs/design-pattern-introduction...
2023-05-30T10:01:02.634Z [INFO]: Getting http://127.0.0.1:5050/blogs/understanding-linq-deferred-immediate-streaming-and-non-streaming-executions...
2023-05-30T10:01:02.691Z [INFO]: Getting http://127.0.0.1:5050/channels/linq...
2023-05-30T10:01:02.717Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-for-each-to-iterate-collections...
2023-05-30T10:01:02.764Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-count-min-max-average-sum-to-aggregate-data...
2023-05-30T10:01:02.861Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-group-by-to-group-data...
2023-05-30T10:01:02.909Z [INFO]: Getting http://127.0.0.1:5050/blogs/simulating-left-outer-join-using-linq...
2023-05-30T10:01:02.962Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-group-join-to-combine-data...
2023-05-30T10:01:02.999Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-join-to-combine-data...
2023-05-30T10:01:03.045Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-concat-to-combine-data...
2023-05-30T10:01:03.087Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-union-to-combine-data...
2023-05-30T10:01:03.129Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-intersect-to-find-common-data...
2023-05-30T10:01:03.177Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-except-to-find-difference-in-data...
2023-05-30T10:01:03.226Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-sequence-equal-to-find-equality-of-data...
2023-05-30T10:01:03.284Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-contains-to-check-data...
2023-05-30T10:01:03.342Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-any-to-find-type-of-data...
2023-05-30T10:01:03.383Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-all-to-find-type-of-data...
2023-05-30T10:01:03.422Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-chunk-to-split-data...
2023-05-30T10:01:03.461Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-distinct-to-select-unique-data...
2023-05-30T10:01:03.501Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-skip-to-select-specific-data...
2023-05-30T10:01:03.544Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-take-to-select-specific-data...
2023-05-30T10:01:03.590Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-single-to-select-single-data...
2023-05-30T10:01:03.637Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-last-to-select-single-data...
2023-05-30T10:01:03.687Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-first-to-select-single-data...
2023-05-30T10:01:03.729Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-where-to-filter-data...
2023-05-30T10:01:03.767Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-orderby-to-sort-data...
2023-05-30T10:01:03.822Z [INFO]: Getting http://127.0.0.1:5050/blogs/using-linq-to-select-and-project-data...
2023-05-30T10:01:03.863Z [INFO]: Getting http://127.0.0.1:5050/blogs/linq-introduction...
2023-05-30T10:01:03.898Z [INFO]: Getting http://127.0.0.1:5050/blogs/generate-excel-report-using-closed-xml-in-dotnet...
2023-05-30T10:01:03.942Z [INFO]: Getting http://127.0.0.1:5050/blogs/python-dynamic-interop-with-dotnet...
2023-05-30T10:01:03.984Z [INFO]: Getting http://127.0.0.1:5050/channels/python...
2023-05-30T10:01:03.995Z [INFO]: Getting http://127.0.0.1:5050/about...
2023-05-30T10:01:04.010Z [INFO]: [INFORMATION] The requested URL (javascript: void(0)) was not navigatable.
2023-05-30T10:01:04.011Z [INFO]: Getting http://127.0.0.1:5050/blogs/dependency-injection-lifetimes-in-dotnet...
2023-05-30T10:01:04.056Z [INFO]: Getting http://127.0.0.1:5050/channels/dependency-injection...
2023-05-30T10:01:04.067Z [INFO]: Getting http://127.0.0.1:5050/blogs/introducing-dependency-injection-in-dotnet...
2023-05-30T10:01:04.108Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-publishing-to-iis...
2023-05-30T10:01:04.143Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-dynamic-component...
2023-05-30T10:01:04.184Z [INFO]: Getting http://127.0.0.1:5050/blogs/types-of-middleware-in-aspnet...
2023-05-30T10:01:04.224Z [INFO]: Getting http://127.0.0.1:5050/channels/middleware...
2023-05-30T10:01:04.237Z [INFO]: Getting http://127.0.0.1:5050/blogs/introducing-middleware-in-aspnet...
2023-05-30T10:01:04.282Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-virtualization...
2023-05-30T10:01:04.340Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-forms-validation...
2023-05-30T10:01:04.417Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-forms...
2023-05-30T10:01:04.467Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-data-binding...
2023-05-30T10:01:04.506Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-introduction...
2023-05-30T10:01:04.544Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-communication-between-components...
2023-05-30T10:01:04.589Z [INFO]: Getting http://127.0.0.1:5050/blogs/oops-abstraction...
2023-05-30T10:01:04.630Z [INFO]: Getting http://127.0.0.1:5050/channels/oops...
2023-05-30T10:01:04.641Z [INFO]: Getting http://127.0.0.1:5050/blogs/oops-encapsulation...
2023-05-30T10:01:04.680Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-controlling-head-content...
2023-05-30T10:01:04.721Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-event-handling-and-event-arguments...
2023-05-30T10:01:04.765Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-components...
2023-05-30T10:01:04.803Z [INFO]: Getting http://127.0.0.1:5050/blogs/implementing-tdd-in-csharp-dotnet...
2023-05-30T10:01:04.845Z [INFO]: Getting http://127.0.0.1:5050/channels/tdd...
2023-05-30T10:01:04.857Z [INFO]: Getting http://127.0.0.1:5050/blogs/introducing-tdd-in-csharp-dotnet...
2023-05-30T10:01:04.893Z [INFO]: Getting http://127.0.0.1:5050/talks/blazor-spa-from-aspnet-family...
2023-05-30T10:01:04.926Z [INFO]: Getting http://127.0.0.1:5050/channels/talk...
2023-05-30T10:01:04.938Z [INFO]: Getting http://127.0.0.1:5050/blogs/webapi-importance-of-status-code...
2023-05-30T10:01:04.973Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-app-settings...
2023-05-30T10:01:05.029Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-lazy-loading...
2023-05-30T10:01:05.081Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-styles-and-css-isolation...
2023-05-30T10:01:05.124Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-javascript-interop-and-isolation...
2023-05-30T10:01:05.170Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-dark-theme-and-light-theme...
2023-05-30T10:01:05.212Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-error-logging...
2023-05-30T10:01:05.250Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-exception-handling-and-error-boundary...
2023-05-30T10:01:05.293Z [INFO]: Getting http://127.0.0.1:5050/blogs/blazor-wasm-error-logging/...
2023-05-30T10:01:05.444Z [INFO]: Fetching complete.
2023-05-30T10:01:05.668Z [INFO]: BlazorWasmAntivirusProtection: Renaming .dll files to .dat
2023-05-30T10:01:05.671Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.CSharp.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.CSharp.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.CSharp.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.CSharp.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Specialized.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Specialized.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Specialized.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Specialized.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.IO.MemoryMappedFiles.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.IO.MemoryMappedFiles.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.Tasks.Extensions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.Tasks.Extensions.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Primitives.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Primitives.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Queryable.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Queryable.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Queryable.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Queryable.dat.gz"
2023-05-30T10:01:05.671Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Primitives.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Primitives.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Primitives.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Primitives.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Humanizer.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Humanizer.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Humanizer.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Humanizer.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Diagnostics.TraceSource.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Diagnostics.TraceSource.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Diagnostics.TraceSource.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/LINQDemoComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/LINQDemoComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/LINQDemoComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/LINQDemoComponents.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedComponents.dat.gz"
2023-05-30T10:01:05.673Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Core.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Core.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Core.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Core.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Memory.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Memory.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Memory.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Memory.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/OOPSDemoComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/OOPSDemoComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Console.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Console.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/OOPSDemoComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/OOPSDemoComponents.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Console.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Console.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/BlazorDemoComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/BlazorDemoComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/BlazorDemoComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/BlazorDemoComponents.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.CoreLib.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.CoreLib.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.CoreLib.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.CoreLib.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedModels.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedModels.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedModels.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedModels.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Annotations.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Annotations.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Annotations.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Options.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.Uri.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.Uri.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Options.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Options.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.Uri.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.Uri.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Concurrent.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Concurrent.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Concurrent.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Concurrent.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Blazor-Analytics.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Blazor-Analytics.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Blazor-Analytics.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Blazor-Analytics.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.NonGeneric.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.NonGeneric.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.NonGeneric.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.NonGeneric.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Abstractions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Abstractions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Abstractions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Abstractions.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Metadata.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Metadata.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Metadata.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Metadata.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/FluentValidation.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/FluentValidation.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/FluentValidation.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/FluentValidation.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Encodings.Web.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Encodings.Web.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Encodings.Web.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Encodings.Web.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Components.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Components.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Components.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Components.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Primitives.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Primitives.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Primitives.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Primitives.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dat.gz"
2023-05-30T10:01:05.673Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Dynamic.Core.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Dynamic.Core.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Dynamic.Core.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Dynamic.Core.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Web.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Web.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Web.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Web.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/ReportDemoComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/ReportDemoComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/ReportDemoComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/ReportDemoComponents.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ObjectModel.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ObjectModel.dat.br"
2023-05-30T10:01:05.674Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ObjectModel.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ObjectModel.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Primitives.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Primitives.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Primitives.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Services.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Services.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Services.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Services.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Json.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Json.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Json.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Json.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.RegularExpressions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.RegularExpressions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.RegularExpressions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.RegularExpressions.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Web.HttpUtility.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Web.HttpUtility.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Web.HttpUtility.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Web.HttpUtility.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DependencyInjectionDemoComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DependencyInjectionDemoComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DependencyInjectionDemoComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DependencyInjectionDemoComponents.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/netstandard.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/netstandard.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/netstandard.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/netstandard.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Immutable.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Immutable.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Immutable.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Immutable.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DesignPatternDemoComponents.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DesignPatternDemoComponents.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DesignPatternDemoComponents.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DesignPatternDemoComponents.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Http.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Http.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Http.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Http.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.TypeConverter.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.TypeConverter.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Expressions.dll.gz" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Expressions.dat.gz"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Expressions.dll.br" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Expressions.dat.br"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Blazor-Analytics.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Blazor-Analytics.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/BlazorDemoComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/BlazorDemoComponents.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Components.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Components.dat"
2023-05-30T10:01:05.675Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DependencyInjectionDemoComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DependencyInjectionDemoComponents.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DesignPatternDemoComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/DesignPatternDemoComponents.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/FluentValidation.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/FluentValidation.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Humanizer.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Humanizer.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/LINQDemoComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/LINQDemoComponents.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dat"
2023-05-30T10:01:05.675Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.CSharp.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.CSharp.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.dat"
2023-05-30T10:01:05.675Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Logging.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Primitives.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Primitives.dat"
2023-05-30T10:01:05.676Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Options.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.Extensions.Options.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/netstandard.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/netstandard.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/OOPSDemoComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/OOPSDemoComponents.dat"
2023-05-30T10:01:05.676Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/ReportDemoComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/ReportDemoComponents.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedComponents.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedComponents.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedModels.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/SharedModels.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Concurrent.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Concurrent.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.dat"
2023-05-30T10:01:05.676Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Immutable.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Immutable.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.NonGeneric.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.NonGeneric.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Annotations.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Annotations.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Specialized.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Collections.Specialized.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.dat"
2023-05-30T10:01:05.676Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Primitives.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.Primitives.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.TypeConverter.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ComponentModel.TypeConverter.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Console.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Console.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Core.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Core.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Diagnostics.TraceSource.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Diagnostics.TraceSource.dat"
2023-05-30T10:01:05.677Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.IO.MemoryMappedFiles.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.IO.MemoryMappedFiles.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Dynamic.Core.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Dynamic.Core.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Expressions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Expressions.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Queryable.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Linq.Queryable.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Memory.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Memory.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Http.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Http.dat"
2023-05-30T10:01:05.678Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Primitives.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Net.Primitives.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ObjectModel.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.ObjectModel.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.CoreLib.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.CoreLib.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.Uri.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Private.Uri.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Metadata.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Metadata.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Primitives.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Reflection.Primitives.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Runtime.dat"
2023-05-30T10:01:05.678Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Encodings.Web.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Encodings.Web.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Json.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.Json.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.RegularExpressions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Text.RegularExpressions.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.Tasks.Extensions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Threading.Tasks.Extensions.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Web.HttpUtility.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/System.Web.HttpUtility.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Abstractions.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Abstractions.dat"
2023-05-30T10:01:05.678Z [INFO]: BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Services.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.Services.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Toolbelt.Blazor.HeadElement.dat"
                                 BlazorWasmAntivirusProtection: Renaming "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Web.dll" to "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/Web.dat"
                                 BlazorWasmAntivirusProtection: Updating "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/blazor.boot.json"
2023-05-30T10:01:05.679Z [INFO]: BlazorWasmAntivirusProtection: Recompressing "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/blazor.boot.json.gz"
2023-05-30T10:01:05.680Z [INFO]: BlazorWasmAntivirusProtection: Recompressing "/codebuild/output/src198993881/src/ilovedotnet/Web/release/wwwroot/_framework/blazor.boot.json.br"
2023-05-30T10:01:05.712Z [INFO]: BlazorWasmAntivirusProtection: Renaming .dll files to .dat finished
2023-05-30T10:01:05.713Z [INFO]: BlazorWasmAntivirusProtection: Recompressing satellite assemblies
2023-05-30T10:01:05.714Z [INFO]: BlazorWasmAntivirusProtection: Recompressing satellite assemblies finished
2023-05-30T10:01:05.752Z [INFO]: # Completed phase: build
2023-05-30T10:01:05.755Z [INFO]: ## Build completed successfully
2023-05-30T10:01:05.758Z [INFO]: # Starting caching...
2023-05-30T10:01:05.764Z [INFO]: # Creating cache artifact...
2023-05-30T10:01:05.768Z [INFO]: # Created cache artifact
2023-05-30T10:01:05.768Z [INFO]: # Uploading cache artifact...
2023-05-30T10:01:05.855Z [INFO]: # Uploaded cache artifact
2023-05-30T10:01:05.855Z [INFO]: # Caching completed
2023-05-30T10:01:05.859Z [INFO]: # No custom headers found.
2023-05-30T10:01:05.860Z [INFO]: # Starting build artifact upload process...
2023-05-30T10:01:10.082Z [INFO]: # Uploading build artifact '__artifacts.zip'...
2023-05-30T10:01:10.194Z [INFO]: # Uploading build artifact '__artifactsHash.zip'...
2023-05-30T10:01:11.033Z [INFO]: # Build artifact upload completed
2023-05-30T10:01:11.033Z [INFO]: # Starting environment caching...
2023-05-30T10:01:11.034Z [INFO]: # Environment caching completed
Terminating logging...
1reaction
jsakamotocommented, May 28, 2023
Read more comments on GitHub >

github_iconTop Results From Across the Web

Deploy .NET Blazor WebAssembly Application to ...
In this post, you will deploy a Blazor WebAssembly Application from git repository to AWS Amplify. We will use .NET 6. to create...
Read more >
Blazor AWS Amplify: Configuration
Amplify provides static web app hosting with built in CI/CD. This is what we will use to create, deploy, and host Blazor WASM....
Read more >
Error while deploying build using AWS Amplify Console ...
I am able to run the app locally after adding the auth module. However, after committing the code to GitHub, the automated build...
Read more >
AWS Amplify throws exception while running hosted Blazor ...
The exception you're encountering indicates an issue with the WebAssembly (Wasm) content in your Blazor WebAssembly app. It appears that the Wasm file...
Read more >
Deploy Blazor WebAssembly to AWS Amplify
This is what we are going to build and deploy in this article. A simple Blazor WebAssembly application running on .NET 7; Push...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found