Skip to content

Commit c3be943

Browse files
committed
test 8
1 parent 255a9ec commit c3be943

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

PowerSync/PowerSync.Maui/CHANGELOG.md

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

3-
## 0.0.2-dev.7
3+
## 0.0.2-dev.8
44
- Fixing build issues related to MAUI targets not resolving on install.
55

66
## 0.0.1-alpha.1

PowerSync/PowerSync.Maui/PowerSync.Maui.csproj

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
<ItemGroup>
2525
<ProjectReference Include="..\PowerSync.Common\PowerSync.Common.csproj" />
26-
<None Include="build\PowerSync.Maui.targets" Pack="true" PackagePath="build\PowerSync.Maui.targets" />
2726

2827
</ItemGroup>
2928

@@ -42,18 +41,9 @@
4241
</Content>
4342
</ItemGroup>
4443

45-
<ItemGroup Condition="$(TargetFramework.Contains('-ios'))">
44+
<ItemGroup Condition="$(TargetFramework.Contains('-ios'))">
4645
<Content Include="Platforms\iOS\NativeLibs\powersync-sqlite-core.xcframework\**\*.*">
4746
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4847
</Content>
49-
</ItemGroup>
50-
51-
<ItemGroup>
52-
<None Include="Platforms\**\*.*" Pack="true" PackagePath="Platforms\" />
53-
54-
<Content Include="Platforms\Android\jniLibs\**\*.so" Pack="true" PackagePath="build\Platforms\Android\jniLibs\">
55-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
56-
</Content>
57-
</ItemGroup>
58-
48+
</ItemGroup>
5949
</Project>
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<Project>
2-
<ItemGroup>
3-
<AndroidNativeLibrary Include="$(MSBuildThisFileDirectory)Platforms\Android\jniLibs\**\*.so" />
2+
<ItemGroup Condition="$(TargetFramework.Contains('-android'))">
3+
<Content Include="Platforms\Android\**\*.*" pack="true">
4+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5+
</Content>
6+
</ItemGroup>
7+
8+
<ItemGroup Condition="$(TargetFramework.Contains('-ios'))">
9+
<Content Include="$(MSBuildThisFileDirectory)..\Platforms\iOS\NativeLibs\powersync-sqlite-core.xcframework\**\*.*">
10+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
11+
</Content>
412
</ItemGroup>
513
</Project>

0 commit comments

Comments
 (0)