https://github.com/beeradmoore/avaloniawebviewtest
https://github.com/beeradmoore/avaloniawebviewtest
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/beeradmoore/avaloniawebviewtest
- Owner: beeradmoore
- Created: 2024-07-31T22:47:47.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T02:15:04.000Z (10 months ago)
- Last Synced: 2025-03-02T11:12:15.934Z (5 months ago)
- Language: C#
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reproduction for issue [#318](https://github.com/OutSystems/WebView/issues/318) in the OutSystems repo for WebView use with the [WebViewControl-Avalonia](https://www.nuget.org/packages/WebViewControl-Avalonia) nuget package.
UPDATE:
The issue is caused by `x64` systems requiring the [WebViewControl-Avalonia](https://www.nuget.org/packages/WebViewControl-Avalonia) nuget package while `arm64` systems require the [WebViewControl-Avalonia-ARM64](https://www.nuget.org/packages/WebViewControl-Avalonia-ARM64) package. Both nuget packages can't be used at the same time.
If you are only targeting `x64` or `arm64` you can use one or the other packages and call it a day. However if you require both you need to update your build configuration to support both `x64` and `arm64` instead of `Any CPU`, and then also modify your `.csproj` so it can handle it like so:
```xml
```
Keep in mind while developing if you update one nuget package it won't update the other, nor will it show in our IDE that it needs an update.