Skip to content

Commit 57dfadb

Browse files
committed
Enable skipping unmanaged assemblies in MobileILStrip
1 parent 5250612 commit 57dfadb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
<Uri>https://github.com/xamarin/xamarin-macios</Uri>
6565
<Sha>06fea905cf900ab5296b08d7b67dadddc733dd65</Sha>
6666
</Dependency>
67-
<Dependency Name="Microsoft.NET.Runtime.MonoTargets.Sdk" Version="9.0.0-alpha.1.23556.4">
67+
<Dependency Name="Microsoft.NET.Runtime.MonoTargets.Sdk" Version="9.0.0-rc.1.24414.5">
6868
<Uri>https://github.com/dotnet/runtime</Uri>
69-
<Sha>cf47d9ff6827a3e1d6f2acbf925cd618418f20dd</Sha>
69+
<Sha>0fbd81404d1f211572387498474063bc6f407f0f</Sha>
7070
</Dependency>
7171
</ProductDependencies>
7272
<ToolsetDependencies>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<MicrosoftDotNetBuildTasksFeedPackageVersion>9.0.0-beta.24408.2</MicrosoftDotNetBuildTasksFeedPackageVersion>
99
<MicrosoftNETCoreAppRefPackageVersion>9.0.0-rc.1.24414.5</MicrosoftNETCoreAppRefPackageVersion>
1010
<MicrosoftNETWorkloadEmscriptenCurrentManifest80100TransportVersion>8.0.0-rtm.23511.3</MicrosoftNETWorkloadEmscriptenCurrentManifest80100TransportVersion>
11-
<MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>9.0.0-alpha.1.23556.4</MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>
11+
<MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>9.0.0-rc.1.24414.5</MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>
1212
<MicrosoftTemplateEngineTasksVersion>7.0.100-alpha.1.21601.1</MicrosoftTemplateEngineTasksVersion>
1313
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.24379.1</MicrosoftDotNetCecilPackageVersion>
1414
<MicrosoftDotNetXHarnessiOSSharedPackageVersion>9.0.0-prerelease.24405.1</MicrosoftDotNetXHarnessiOSSharedPackageVersion>

msbuild/Xamarin.MacDev.Tasks/Tasks/ILStrip.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public override bool Execute ()
3232

3333
var result = base.Execute ();
3434

35-
if (result)
36-
StrippedAssemblies = stripedItems.ToArray ();
35+
if (result && UpdatedAssemblies != null)
36+
StrippedAssemblies = UpdatedAssemblies;
3737

3838
return result;
3939
}
46.4 KB
Binary file not shown.

tests/monotouch-test/dotnet/shared.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
</ItemGroup>
6565

6666
<ItemGroup>
67-
<Reference Include="NativeLibrary.dll">
68-
<HintPath>$(RootTestsDirectory)\monotouch-test\NativeLibrary.dll</HintPath>
69-
</Reference>
67+
<None Include="$(RootTestsDirectory)\monotouch-test\NativeLibrary.dll">
68+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
69+
</None>
7070
</ItemGroup>
7171

7272
<ItemGroup>

0 commit comments

Comments
 (0)