Skip to content

Commit f27acf7

Browse files
authored
Build WebView in ARM64 (#307)
* Added support for ARM64 * Updated solution configuration * Updated config * Improved versioning * Deployment in ARM64 * Test projects * Fixed sample app publish script * Fixed bundling * Added package suffix * Added PlatformTarget * Removed PlatformTarget and bump version * Changed build configurations * Update publish.cmd * Delete publish.cmd
1 parent df6b7e1 commit f27acf7

19 files changed

+124
-146
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ launchSettings.json
2626
.idea
2727
WebViewControl/FodyWeavers.xsd
2828
WebViewControl.Avalonia/FodyWeavers.xsd
29+
**/*.DS_Store

Directory.Build.props

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,29 @@
22
<Project>
33
<PropertyGroup>
44
<DotnetVersion>net6.0</DotnetVersion>
5+
<Platforms>x64;ARM64</Platforms>
6+
<AvaloniaVersion>0.10.17</AvaloniaVersion>
7+
<CefGlueVersion>106.5249.18</CefGlueVersion>
58
</PropertyGroup>
69

710
<PropertyGroup>
811
<AssemblyVersion>2.0.0.0</AssemblyVersion>
912
<FileVersion>2.0.0.0</FileVersion>
10-
<Version>2.106.7</Version>
13+
<Version>2.106.8</Version>
1114
<Authors>OutSystems</Authors>
1215
<Product>WebViewControl</Product>
1316
<Copyright>Copyright © OutSystems 2023</Copyright>
1417
<PackageProjectUrl>https://github.com/OutSystems/WebView</PackageProjectUrl>
1518
<PackageOutputPath>$(MSBuildProjectDirectory)\..\nuget</PackageOutputPath>
1619
</PropertyGroup>
20+
21+
<PropertyGroup Condition="'$(Platform)' == '' or '$(Platform)' == 'x64'">
22+
<PackageSuffix />
23+
<CefGluePackageSuffix />
24+
</PropertyGroup>
25+
26+
<PropertyGroup Condition="'$(Platform)' == 'ARM64'">
27+
<PackageSuffix>-ARM64</PackageSuffix>
28+
<CefGluePackageSuffix>.ARM64</CefGluePackageSuffix>
29+
</PropertyGroup>
1730
</Project>

Directory.Packages.props

+8-5
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@
1616
</ItemDefinitionGroup>
1717

1818
<ItemGroup>
19-
<PackageVersion Include="Avalonia" Version="0.10.17" />
20-
<PackageVersion Include="Avalonia.Desktop" Version="0.10.17" />
21-
<PackageVersion Include="Avalonia.ReactiveUI" Version="0.10.17" />
19+
<PackageVersion Include="Avalonia" Version="$(AvaloniaVersion)" />
20+
<PackageVersion Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
21+
<PackageVersion Include="Avalonia.ReactiveUI" Version="$(AvaloniaVersion)" />
2222

23-
<PackageVersion Include="CefGlue.Avalonia" Version="106.5249.7" />
24-
<PackageVersion Include="CefGlue.Wpf" Version="106.5249.7" />
23+
<PackageVersion Include="CefGlue.Avalonia" Version="$(CefGlueVersion)" />
24+
<PackageVersion Include="CefGlue.WPF" Version="$(CefGlueVersion)" />
25+
26+
<PackageVersion Include="CefGlue.Avalonia.ARM64" Version="$(CefGlueVersion)" />
27+
<PackageVersion Include="CefGlue.WPF.ARM64" Version="$(CefGlueVersion)" />
2528

2629
<PackageVersion Include="Microsoft.CSharp" Version="4.5.0" />
2730
<PackageVersion Include="System.Runtime.Loader" Version="4.3.0" />

SampleWebView.Avalonia/App.xaml

100644100755
File mode changed.

SampleWebView.Avalonia/App.xaml.cs

100644100755
File mode changed.

SampleWebView.Avalonia/MainWindow.xaml

100644100755
File mode changed.

SampleWebView.Avalonia/MainWindow.xaml.cs

100644100755
File mode changed.

SampleWebView.Avalonia/MainWindowViewModel.cs

100644100755
File mode changed.

SampleWebView.Avalonia/Program.cs

100644100755
File mode changed.

SampleWebView.Avalonia/SampleWebView.Avalonia.csproj

100644100755
+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<TargetFramework>$(DotnetVersion)</TargetFramework>
66
<RollForward>LatestMajor</RollForward>
77
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF;ReleaseAvaloniaRemoteDebugSupport</Configurations>
8-
<RuntimeIdentifiers>osx-x64;win-x64</RuntimeIdentifiers>
8+
<RuntimeIdentifiers>osx-x64;win-x64;osx-arm64;win-arm64</RuntimeIdentifiers>
9+
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
910
</PropertyGroup>
1011

1112
<PropertyGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-arm64 -p:Platform=ARM64
4+
5+
TARGETAPP=bin/ARM64/Debug/net6.0/osx-arm64/publish/SampleWebView.app/Contents/MacOS
6+
chmod +x "$TARGETAPP/CefGlueBrowserProcess/Xilium.CefGlue.BrowserProcess"
7+
chmod +x "$TARGETAPP/SampleWebView.Avalonia"
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-x64 -p:Platform=x64
4+
5+
TARGETAPP=bin/x64/Debug/net6.0/osx-x64/publish/SampleWebView.app/Contents/MacOS
6+
chmod +x "$TARGETAPP/CefGlueBrowserProcess/Xilium.CefGlue.BrowserProcess"
7+
chmod +x "$TARGETAPP/SampleWebView.Avalonia"

SampleWebView.Avalonia/bundle.sh

-7
This file was deleted.

SampleWebView.Avalonia/screenshot.png

100644100755
File mode changed.

Tests.WebView/Tests.WebView.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
66
<OutputPath>$(MSBuildProjectDirectory)\bin\</OutputPath>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
8-
<PlatformTarget>x64</PlatformTarget>
8+
<PlatformTarget>$(Platform)</PlatformTarget>
99
<IsPackable>false</IsPackable>
1010
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF;ReleaseAvaloniaRemoteDebugSupport</Configurations>
11-
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
11+
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
1212
</PropertyGroup>
1313

1414
<ItemGroup>

Tests.WebView/publish.cmd

-1
This file was deleted.

WebView.sln

+75-121
Large diffs are not rendered by default.

WebViewControl.Avalonia/WebViewControl.Avalonia.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
<Company></Company>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<GenerateDocumentationFile>true</GenerateDocumentationFile>
12-
<PackageId>WebViewControl-Avalonia</PackageId>
12+
<PackageId>WebViewControl-Avalonia$(PackageSuffix)</PackageId>
1313
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF;ReleaseAvaloniaRemoteDebugSupport</Configurations>
1414
</PropertyGroup>
1515

16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseAvaloniaRemoteDebugSupport|AnyCPU'">
16+
<PropertyGroup Condition="'$(Configuration)' == 'ReleaseAvaloniaRemoteDebugSupport'">
1717
<DefineConstants>REMOTE_DEBUG_SUPPORT</DefineConstants>
18-
<PackageId>WebViewControl-Avalonia-RemoteDebugSupport</PackageId>
18+
<PackageId>WebViewControl-Avalonia-RemoteDebugSupport$(PackageSuffix)</PackageId>
1919
<Optimize>true</Optimize>
2020
</PropertyGroup>
2121

22-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseAvalonia|AnyCPU'">
22+
<PropertyGroup Condition="'$(Configuration)' == 'ReleaseAvalonia'">
2323
<Optimize>true</Optimize>
2424
</PropertyGroup>
2525

@@ -64,7 +64,7 @@
6464
<ItemGroup>
6565
<!--When we upload Avalonia here, we should increase the version of both WebViewControl.Avalonia as well as ReactViewControl.Avalonia-->
6666
<PackageReference Include="Avalonia" />
67-
<PackageReference PrivateAssets="None" Include="CefGlue.Avalonia" />
67+
<PackageReference PrivateAssets="None" Include="CefGlue.Avalonia$(CefGluePackageSuffix)" />
6868
<PackageReference Include="Microsoft.CSharp" />
6969
<PackageReference Include="System.Runtime.Loader" />
7070
</ItemGroup>

WebViewControl/WebViewControl.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<Copyright>Copyright © 2023</Copyright>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
13-
<PackageId>WebViewControl-WPF</PackageId>
13+
<PackageId>WebViewControl-WPF$(PackageSuffix)</PackageId>
1414
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF;ReleaseAvaloniaRemoteDebugSupport</Configurations>
1515
</PropertyGroup>
1616

17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWPF|AnyCPU'">
17+
<PropertyGroup Condition="'$(Configuration)' == 'ReleaseWPF'">
1818
<Optimize>true</Optimize>
1919
</PropertyGroup>
2020

@@ -43,7 +43,7 @@
4343
</ItemGroup>
4444

4545
<ItemGroup>
46-
<PackageReference PrivateAssets="None" Include="CefGlue.Wpf" />
46+
<PackageReference PrivateAssets="None" Include="CefGlue.Wpf$(CefGluePackageSuffix)" />
4747
</ItemGroup>
4848

4949
</Project>

0 commit comments

Comments
 (0)