Skip to content

Commit b870ba2

Browse files
Exclude .pdb files from runtime packs
1 parent fa0d85a commit b870ba2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build-tools/create-packs/Microsoft.Android.Runtime.proj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@ projects that use the Microsoft.Android framework in .NET 5.
4848

4949
<ItemGroup>
5050
<_PackageFiles Include="@(_AndroidRuntimePackAssemblies)" PackagePath="$(_AndroidRuntimePackAssemblyPath)" TargetPath="$(_AndroidRuntimePackAssemblyPath)" />
51-
<_PackageFiles Include="@(_AndroidRuntimePackAssemblies->'%(RelativeDir)%(Filename).pdb')" PackagePath="$(_AndroidRuntimePackAssemblyPath)" />
51+
<!-- TODO: workaround for
52+
https://github.com/dotnet/runtime/issues/67660
53+
https://github.com/dotnet/linker/issues/2203
54+
-->
55+
<!-- <_PackageFiles Include="@(_AndroidRuntimePackAssemblies->'%(RelativeDir)%(Filename).pdb')" PackagePath="$(_AndroidRuntimePackAssemblyPath)" /> -->
5256
<_PackageFiles Include="@(_AndroidRuntimePackAssets)" PackagePath="$(_AndroidRuntimePackNativePath)" TargetPath="$(_AndroidRuntimePackNativePath)" IsNative="true" />
5357
</ItemGroup>
5458
</Target>

0 commit comments

Comments
 (0)