File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# PowerSync.Common Changelog
22
3+ ## 0.1.2-dev.1
4+
5+ - Fix ` net9.0-android ` and ` net9.0-ios ` not being in TargetFrameworks.
6+
37## 0.1.1
48
59- Support Windows ARM.
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >netstandard2.0;net6.0;net8.0;net9.0;net8.0-ios;net8.0-android</TargetFrameworks >
4+ <TargetFrameworks >netstandard2.0;net6.0;net8.0;net9.0;net8.0-ios;net8.0-android;net9.0-ios;net9.0-android </TargetFrameworks >
55 <LangVersion >12</LangVersion >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <Nullable >enable</Nullable >
Original file line number Diff line number Diff line change 11# PowerSync.Maui Changelog
22
3+ ## 0.1.2-dev.1
4+
5+ - Fix ` net9.0-android ` and ` net9.0-ios ` not being in TargetFrameworks.
6+
37## 0.1.1
48
59- Upstream PowerSync.Common version bump (See Powersync.Common changelog 0.1.1 for more information)
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >netstandard2.0;net6.0;net8.0;net9.0;net8.0-ios;net8.0-android</TargetFrameworks >
4+ <TargetFrameworks >netstandard2.0;net6.0;net8.0;net9.0;net8.0-ios;net8.0-android;net9.0-ios;net9.0-android </TargetFrameworks >
55 <LangVersion >12</LangVersion >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <Nullable >enable</Nullable >
2020 <NoWarn >NU5100</NoWarn >
2121 <PackageReadmeFile >README.md</PackageReadmeFile >
2222 <IsBindingProject >true</IsBindingProject >
23- <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
2423 <IncludeBuildOutput >true</IncludeBuildOutput >
2524 </PropertyGroup >
2625
2726 <ItemGroup >
28- <ProjectReference Include =" ..\PowerSync.Common\PowerSync.Common.csproj" />
27+ <ProjectReference Include =" ..\PowerSync.Common\PowerSync.Common.csproj" SetTargetFramework = " TargetFramework=$(TargetFramework) " />
2928 </ItemGroup >
3029
3130 <ItemGroup >
4544 <SmartLink >False</SmartLink >
4645 </NativeReference >
4746 </ItemGroup >
47+
48+ <!-- Prevent e_sqlite3.a from being frozen into the binding manifest. It is provided by
49+ SQLitePCLRaw.lib.e_sqlite3.ios with separate device/simulator variants, selected at
50+ consuming-project build time via buildTransitive targets. Capturing it here would bake
51+ in the device-only variant and break simulator builds in consuming projects. -->
52+ <Target Name =" _RemoveE_Sqlite3FromBindingManifest" BeforeTargets =" _SanitizeNativeReferences" Condition =" '$(IsBindingProject)' == 'true'" >
53+ <ItemGroup >
54+ <NativeReference Remove =" @(NativeReference)" Condition =" '%(Filename)' == 'e_sqlite3'" />
55+ </ItemGroup >
56+ </Target >
57+
4858</Project >
You can’t perform that action at this time.
0 commit comments