Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beeradmoore/avaloniawebviewtest
https://github.com/beeradmoore/avaloniawebviewtest
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/beeradmoore/avaloniawebviewtest
- Owner: beeradmoore
- Created: 2024-07-31T22:47:47.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T02:15:52.000Z (4 months ago)
- Last Synced: 2024-08-12T03:28:50.691Z (4 months ago)
- Language: C#
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
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.