MicrosoftEdge / WebView2Samples

Microsoft Edge WebView2 samples
830 stars 460 forks source link

Adding net6.0-windows for WinForms and WPF #244

Closed oggy22 closed 1 month ago

oggy22 commented 1 month ago

Adding net6.0-windows for WinForms and WPF to be regularly tested instead of netcoreapp3.0 which is out-of-support and can't be run on ARM64 anymore. Unlike net462 where assemblies can be simply copied over to arm64, net6.0 requires custom built assemblies for arm64, for example by running dotnet publish --framework net6.0-windows -r win-arm64 --self-contained true. This will be followed with updating our vendor tests instructions on how to test net6.0-windows instead of netcoreapp3.0 on arm64.

oggy22 commented 1 month ago

Adding net6.0-windows for WinForms and WPF to be regularly tested instead of netcoreapp3.0 which is out-of-support and can't be run on ARM64 anymore. Unlike net462 where assemblies can be simply copied over to arm64, net6.0 requires custom built assemblies for arm64, for example by running dotnet publish --framework net6.0-windows -r win-arm64 --self-contained true. This will be followed with updating our vendor tests instructions on how to test net6.0-windows instead of netcoreapp3.0 on arm64.