diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6f9757ddc7d6..ce4c543dd4bc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -64,9 +64,9 @@ https://github.com/xamarin/xamarin-macios 06fea905cf900ab5296b08d7b67dadddc733dd65 - + https://github.com/dotnet/runtime - cf47d9ff6827a3e1d6f2acbf925cd618418f20dd + 0fbd81404d1f211572387498474063bc6f407f0f diff --git a/eng/Versions.props b/eng/Versions.props index ca3987248b95..d68e6eaefa8f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -8,7 +8,7 @@ 9.0.0-beta.24408.2 9.0.0-rc.1.24414.5 8.0.0-rtm.23511.3 - 9.0.0-alpha.1.23556.4 + 9.0.0-rc.1.24414.5 7.0.100-alpha.1.21601.1 0.11.5-alpha.24379.1 9.0.0-prerelease.24405.1 diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/ILStrip.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/ILStrip.cs index 2ef39b53d69e..c13cf9773b75 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/ILStrip.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/ILStrip.cs @@ -32,8 +32,8 @@ public override bool Execute () var result = base.Execute (); - if (result) - StrippedAssemblies = stripedItems.ToArray (); + if (result && UpdatedAssemblies is not null) + StrippedAssemblies = UpdatedAssemblies; return result; } diff --git a/tests/monotouch-test/NativeLibrary.dll b/tests/monotouch-test/NativeLibrary.dll new file mode 100755 index 000000000000..9593a3972e40 Binary files /dev/null and b/tests/monotouch-test/NativeLibrary.dll differ diff --git a/tests/monotouch-test/dotnet/shared.csproj b/tests/monotouch-test/dotnet/shared.csproj index 5e49cc55f80d..5c533897fb42 100644 --- a/tests/monotouch-test/dotnet/shared.csproj +++ b/tests/monotouch-test/dotnet/shared.csproj @@ -63,6 +63,12 @@ + + + $(RootTestsDirectory)\monotouch-test\NativeLibrary.dll + + +