Skip to content

Commit

Permalink
Add Wasmtime Windows ARM64 (AArch64) binary.
Browse files Browse the repository at this point in the history
Wasmtime recently completed Windows ARM64 support with bytecodealliance/wasmtime#9266 and added release artifacts with bytecodealliance/wasmtime#9283.

Fixes #298
  • Loading branch information
kpreisser committed Sep 23, 2024
1 parent 9a64e14 commit 14310eb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Wasmtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,15 @@ The .NET embedding of Wasmtime enables .NET code to instantiate WebAssembly modu
<FileExtension>zip</FileExtension>
<LibraryFilename>wasmtime.dll</LibraryFilename>
</Wasmtime>

<Wasmtime Include="windows-aarch64">
<Copy Condition="$([MSBuild]::IsOsPlatform('Windows')) And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='Arm64'">true</Copy>
<OS>windows</OS>
<Arch>aarch64</Arch>
<RID>win-arm64</RID>
<FileExtension>zip</FileExtension>
<LibraryFilename>wasmtime.dll</LibraryFilename>
</Wasmtime>
</ItemGroup>

<!-- This target downloads wasmtime and runs before any inner TFM-specific builds -->
Expand Down

0 comments on commit 14310eb

Please sign in to comment.