Skip to content

Commit b3dae0a

Browse files
committed
Harsher removal of assets for common.
1 parent fb5d109 commit b3dae0a

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

PowerSync/PowerSync.Common/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PowerSync.Common Changelog
22

3-
## 0.0.4-dev.3
3+
## 0.0.4-dev.4
44
- Fixing build issues related to MAUI targets not resolving on install.
55

66
## 0.0.3-alpha.1
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project>
2-
<ItemGroup>
3-
<!-- Automatically exclude native assets for Android targets -->
4-
<PackageReference Update="PowerSync.Common" Condition="$(TargetFramework.Contains('android'))">
5-
<ExcludeAssets>%(ExcludeAssets);native</ExcludeAssets>
6-
</PackageReference>
7-
</ItemGroup>
2+
<Target Name="RemovePowerSyncNativeForAndroid" AfterTargets="ResolvePackageAssets" Condition="$(TargetFramework.Contains('android'))">
3+
<ItemGroup>
4+
<NativeCopyLocalItems Remove="@(NativeCopyLocalItems)" Condition="'%(NuGetPackageId)' == 'PowerSync.Common'" />
5+
</ItemGroup>
6+
</Target>
87
</Project>

0 commit comments

Comments
 (0)