Skip to content

Commit 7a7d89b

Browse files
committed
Update README.md about WebViewControl-Avalonia-ARM64 (#318)
1 parent 01c76a6 commit 7a7d89b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# WebView
22
[![WebViewControl-Avalonia](https://img.shields.io/nuget/v/WebViewControl-Avalonia.svg?style=flat&label=WebView-Avalonia)](https://www.nuget.org/packages/WebViewControl-Avalonia/)
3+
[![WebViewControl-Avalonia-Arm64](https://img.shields.io/nuget/v/WebViewControl-Avalonia-Arm64.svg?style=flat&label=WebViewControl-Avalonia-Arm64)](https://www.nuget.org/packages/WebViewControl-Avalonia-Arm64/)
34
[![WebViewControl-WPF](https://img.shields.io/nuget/v/WebViewControl-WPF.svg?style=flat&label=WebView-WPF)](https://www.nuget.org/packages/WebViewControl-WPF/)
45

56
Avalonia/WPF control that wraps CefGlue webview control
@@ -38,6 +39,16 @@ It also provides the following additional features:
3839
Stable binaries are released on NuGet, and contain everything you need to embed Chromium in your .NET/CLR application.
3940

4041
## Documentation
42+
To start, add these to `ProjectName.csproj`
43+
```xml
44+
<ItemGroup Condition="'$(Platform)' == 'x64'">
45+
<PackageReference Include="WebViewControl-Avalonia" Version="3.120.5" />
46+
</ItemGroup>
47+
<!-- https://github.com/dotnet/sdk/issues/21980 -->
48+
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture) == 'Arm64'">
49+
<PackageReference Include="WebViewControl-Avalonia-ARM64" Version="3.120.5" />
50+
</ItemGroup>
51+
```
4152
See the [Sample](SampleWebView.Avalonia) project for example web browsers built with WebView. It demos some of the available features.
4253

4354
## Other

0 commit comments

Comments
 (0)