Skip to content

Commit 6b1fee4

Browse files
authored
Merge pull request #3742 from arturcic/main
Remove win-x86 support in BuildContext
2 parents 0abd8d6 + 9760f90 commit 6b1fee4

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)