Skip to content

Commit 9760f90

Browse files
committed
Remove win-x86 support in BuildContext
In the BuildContext for Windows, the "win-x86" option has been removed from the NativeRuntimes dictionary. This update indicates that we no longer support building for the windows 32-bit platform.
1 parent 0abd8d6 commit 9760f90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build/BuildContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class BuildContext : BuildContextBase
99

1010
public readonly Dictionary<PlatformFamily, string[]> NativeRuntimes = new()
1111
{
12-
[PlatformFamily.Windows] = new[] { "win-x64", "win-x86", "win-arm64" },
12+
[PlatformFamily.Windows] = new[] { "win-x64", "win-arm64" },
1313
[PlatformFamily.Linux] = new[] { "linux-x64", "linux-musl-x64", "linux-arm64", "linux-musl-arm64" },
1414
[PlatformFamily.OSX] = new[] { "osx-x64", "osx-arm64" },
1515
};

0 commit comments

Comments
 (0)