Skip to content

Commit 2a245bb

Browse files
Fix _PrepareNativeAssemblySources Outputs typo (typemaps → typemap)
The target declared Outputs as typemaps.{abi}.ll but GenerateEmptyTypemapStub writes typemap.{abi}.ll. The mismatch caused MSBuild to always rerun the target. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 9d7ac83 commit 2a245bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Xamarin.Android.Build.Tasks/Microsoft.Android.Sdk/targets/Microsoft.Android.Sdk.TypeMap.Trimmable.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
<Target Name="_PrepareNativeAssemblySources"
165165
Condition=" '$(_AndroidRuntime)' != 'NativeAOT' "
166166
Inputs="@(_BuildTargetAbis)"
167-
Outputs="@(_BuildTargetAbis->'$(_NativeAssemblySourceDir)typemaps.%(Identity).ll')">
167+
Outputs="@(_BuildTargetAbis->'$(_NativeAssemblySourceDir)typemap.%(Identity).ll')">
168168
<ItemGroup>
169169
<_TypeMapStubAbis Include="@(_BuildTargetAbis)" />
170170
</ItemGroup>

0 commit comments

Comments
 (0)