WebView2.Runtime.X86.Core 153.0.4234.32

dotnet add package WebView2.Runtime.X86.Core --version 153.0.4234.32
                    
NuGet\Install-Package WebView2.Runtime.X86.Core -Version 153.0.4234.32
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WebView2.Runtime.X86.Core" Version="153.0.4234.32" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WebView2.Runtime.X86.Core" Version="153.0.4234.32" />
                    
Directory.Packages.props
<PackageReference Include="WebView2.Runtime.X86.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WebView2.Runtime.X86.Core --version 153.0.4234.32
                    
#r "nuget: WebView2.Runtime.X86.Core, 153.0.4234.32"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package WebView2.Runtime.X86.Core@153.0.4234.32
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=WebView2.Runtime.X86.Core&version=153.0.4234.32
                    
Install as a Cake Addin
#tool nuget:?package=WebView2.Runtime.X86.Core&version=153.0.4234.32
                    
Install as a Cake Tool

Nuget packages for Microsoft WebView2 Fixed Runtime Distribution

Nuget packages:

Platform Architecture Package Name Version Downloads
Windows X86 WebView2.Runtime.X86 <br /> WebView2.Runtime.X86.Core NuGet <br /> NuGet NuGet <br /> NuGet
Windows X64 WebView2.Runtime.X64 <br /> WebView2.Runtime.X64.Core NuGet <br /> NuGet NuGet <br /> NuGet
Windows ARM64 WebView2.Runtime.ARM64 <br /> WebView2.Runtime.ARM64.Core NuGet <br /> NuGet NuGet <br /> NuGet
Windows Any WebView2.Runtime.Locales NuGet NuGet
Windows Any WebView2.Runtime.AutoInstaller NuGet NuGet

WebView2.Runtime.Core

Since version 152.0.4191.53 WebView2 no more fits in nuget limit of 250 megabytes, so to somehow fit in this limit now it splitted into 2 packages. Now you REQUIRE to install both WebView2.Runtime.Arch and WebView2.Runtime.Arch.Core packages.

WebView2.Runtime.Locales

Since version 137.0.3296.52 WebView2 no more fits in nuget limit of 250 megabytes, so to reduce package size runtime now contains only english language. If you want all others languages, just install WebView2.Runtime.Locales package.

Runtime packages usage example:

  1. Install via nuget selected architecture package. (It's nesessary to install both packages!)
Install-Package WebView2.Runtime.X64
Install-Package WebView2.Runtime.X64.Core
  1. Make sure what in you project appears folder WebView2 and all files marked as "Copy To Output".
  2. Initialize webview2 before usage, path must be to WebView2 directory. In most cases it must be in application directory.
var webView = new WebView2() { Dock = DockStyle.Fill };
await webView.EnsureCoreWebView2Async(await CoreWebView2Environment.CreateAsync(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "WebView2")));
Controls.Add(webView);
webView.CoreWebView2.Navigate("https://nuget.org/");

Automate runtime installer example:

You can use package WebView2.Runtime.AutoInstaller to check current WebView2 runtime installed status and automate install it.

This type of installation requires running the program as an administrator (or installer will request them independently) and ethernet connection.

Source of this library you can find here.

  1. Install via nuget.
Install-Package WebView2.Runtime.AutoInstaller
  1. Use
// Check and install if not installed
await WebView2AutoInstaller.CheckAndInstallAsync();
// Only check, return true or false
await WebView2AutoInstaller.CheckAndInstallAsync(true);
// Show runtime installer window
await WebView2AutoInstaller.CheckAndInstallAsync(false, false);
// Set custom path to runtime installer (maybee you put it into application resources).
await WebView2AutoInstaller.CheckAndInstallAsync(false, false, "path");

Samples

You can found samples in Samples directory. Also check official microsoft edge samples repository.

Build nupkg:

  1. Clone repository.
  2. Run build.ps1 and wait.
  3. Or if you want to build with different WebView2 version download .cab files from fixed version section and put in build directory (as in picture) - https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section.

alt text

Used tools:

  1. nuget.exe - nuget package builder.
  2. expand.exe - tool for unpack .cab files (taked from windows 11 system32 directory).
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on WebView2.Runtime.X86.Core:

Package Downloads
WebView2.Runtime.X86

Webview2 runtime for Fixed Version distribution. Example usage: var webView = new WebView2() { Dock = DockStyle.Fill }; await webView.EnsureCoreWebView2Async(await CoreWebView2Environment.CreateAsync(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "WebView2"))); Controls.Add(webView); webView.CoreWebView2.Navigate("https://nuget.org");

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
153.0.4234.32 0 9/11/2026
152.0.4191.62 161 9/4/2026