BlazorPolyfill.Server
6.0.200
dotnet add package BlazorPolyfill.Server --version 6.0.200
NuGet\Install-Package BlazorPolyfill.Server -Version 6.0.200
<PackageReference Include="BlazorPolyfill.Server" Version="6.0.200" />
paket add BlazorPolyfill.Server --version 6.0.200
#r "nuget: BlazorPolyfill.Server, 6.0.200"
// Install BlazorPolyfill.Server as a Cake Addin
#addin nuget:?package=BlazorPolyfill.Server&version=6.0.200
// Install BlazorPolyfill.Server as a Cake Tool
#tool nuget:?package=BlazorPolyfill.Server&version=6.0.200
6.0.200.0:
- blazor.server.js is now cached and managed in es5cache like other transpilable libraries. The cached version will always be used instead of generating it at each application startup.
Documentation too big to be hosted on NuGet, read it on the the Blazor.Polyfill project page.
Product | Versions |
---|---|
.NET | net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
-
net6.0
- JavaScriptEngineSwitcher.ChakraCore (>= 3.9.1)
- JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64 (>= 3.9.1)
- JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64 (>= 3.9.1)
- JavaScriptEngineSwitcher.ChakraCore.Native.win-arm (>= 3.9.1)
- JavaScriptEngineSwitcher.ChakraCore.Native.win-arm64 (>= 3.9.1)
- JavaScriptEngineSwitcher.ChakraCore.Native.win-x64 (>= 3.9.1)
- JavaScriptEngineSwitcher.ChakraCore.Native.win-x86 (>= 3.9.1)
- JavaScriptEngineSwitcher.Extensions.MsDependencyInjection (>= 3.3.0)
- JavaScriptEngineSwitcher.V8 (>= 3.10.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.StaticFiles (>= 2.2.0)
- Microsoft.ClearScript.V8.Native.linux-arm64 (>= 7.1.0)
- Microsoft.ClearScript.V8.Native.linux-x64 (>= 7.1.0)
- Microsoft.ClearScript.V8.Native.osx-x64 (>= 7.1.0)
- Microsoft.ClearScript.V8.Native.win-arm64 (>= 7.1.0)
- Microsoft.ClearScript.V8.Native.win-x64 (>= 7.1.0)
- Microsoft.ClearScript.V8.Native.win-x86 (>= 7.1.0)
- NUglify (>= 1.13.2)
- React.AspNet (>= 5.2.11)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on BlazorPolyfill.Server:
Repository | Stars |
---|---|
ant-design-blazor/ant-design-blazor
🌈A set of enterprise-class UI components based on Ant Design and Blazor WebAssembly.
|
Version | Downloads | Last updated |
---|---|---|
6.0.200 | 8,212 | 2/23/2022 |
6.0.100.3 | 2,366 | 12/4/2021 |
6.0.100.2 | 695 | 11/21/2021 |
6.0.100.1 | 9,468 | 11/13/2021 |
6.0.100 | 371 | 11/9/2021 |
5.0.102 | 22,355 | 2/1/2021 |
5.0.100.6 | 942 | 1/18/2021 |
5.0.100.5 | 478 | 1/5/2021 |
5.0.100.4 | 543 | 12/18/2020 |
5.0.100.2 | 488 | 12/8/2020 |
5.0.100.1 | 369 | 12/4/2020 |
5.0.0 | 549 | 12/2/2020 |
6.0.200.0:
- blazor.server.js is now cached and managed in es5cache like other transpilable libraries. The cached version will always be used instead of generating it at each application startup.
6.0.100.3:
- Fix invalid 'require' keyword in blazor.server.js added by Babel in transpilation that cannot be used on a pure javascript environment
6.0.100.2:
- Blazor.Polyfill now respect the autostart attribute value at start
- Added the ES5ConversionScope option in Blazor.Polyfill configuration. This option is meant to transpile None, Razor Class Libraries, or All Javascript files to ES5 automatically and store it in a es5cache store for your application. Files will be used automatically at runtime when needed. Keeping them under source control is advised.
6.0.100.1:
- Added 'webRootPath' parameter on _import_ javascript isolation emulation method. See the documentation for usage.
6.0.100.0:
- Support for .NET 6.0.100
5.0.102.0:
- Added option to disable automatic React.NET registration, to give more control to advanced scenarios.
- Updated V8 and Native V8 dependencies to 7.1.0
- Added V8 native dependencies for ARM64 (Linux) and ARM64 (Windows)
- Added some conditional logics about the default JS engine used. Windows and OSX (all CPU type) and Linux (x64) uses ChakraCore. Linux (ARM64) use V8. Other platforms or failing scenarios should use the "UsePackagedBlazorServerLibrary" option instead.
5.0.100.6:
- Add configurable ES5 fallback option with a delegate validation
- Add Javascript isolation and dynamic import emulation - See the documentation
5.0.100.5:
- Fix dependencies error on Linux (Debian 10 default installation)
- Potentially fix Azure Web App error with the default Linux image container
- Added BlazorPolyfillOptions parameter for UseBlazorPolyfill methods in order to configure additional behaviors at startup
- Added the ForceES5Fallback option in order to force ES5 and Polyfill behaviors even if the browser is not Internet Explorer 11 or Edge Legacy.
- Added ChakraCore engine image and set it as default. V8 engine is still present as fallback engine.