WebView2.Runtime.X64.Core
153.0.4234.32
dotnet add package WebView2.Runtime.X64.Core --version 153.0.4234.32
NuGet\Install-Package WebView2.Runtime.X64.Core -Version 153.0.4234.32
<PackageReference Include="WebView2.Runtime.X64.Core" Version="153.0.4234.32" />
<PackageVersion Include="WebView2.Runtime.X64.Core" Version="153.0.4234.32" />
<PackageReference Include="WebView2.Runtime.X64.Core" />
paket add WebView2.Runtime.X64.Core --version 153.0.4234.32
#r "nuget: WebView2.Runtime.X64.Core, 153.0.4234.32"
#:package WebView2.Runtime.X64.Core@153.0.4234.32
#addin nuget:?package=WebView2.Runtime.X64.Core&version=153.0.4234.32
#tool nuget:?package=WebView2.Runtime.X64.Core&version=153.0.4234.32
Nuget packages for Microsoft WebView2 Fixed Runtime Distribution
Nuget packages:
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:
- Install via nuget selected architecture package. (It's nesessary to install both packages!)
Install-Package WebView2.Runtime.X64
Install-Package WebView2.Runtime.X64.Core
- Make sure what in you project appears folder WebView2 and all files marked as "Copy To Output".
- 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.
- Install via nuget.
Install-Package WebView2.Runtime.AutoInstaller
- 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:
- Clone repository.
- Run build.ps1 and wait.
- 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.
Used tools:
- nuget.exe - nuget package builder.
- expand.exe - tool for unpack .cab files (taked from windows 11 system32 directory).
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.X64.Core:
| Package | Downloads |
|---|---|
|
WebView2.Runtime.X64
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 | 354 | 9/4/2026 |