Skip to content

Commit 593d446

Browse files
committed
Testing hard cap on .net builds.
1 parent 12f9929 commit 593d446

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

PowerSync/PowerSync.Common/PowerSync.Common.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0;net8.0-ios18.0;net8.0-android</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0;net8.0-ios;net8.0-android</TargetFrameworks>
55
<LangVersion>12</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
@@ -38,14 +38,14 @@
3838

3939
<!-- Check allows us to skip for all MAUI targets-->
4040
<!-- For monorepo-->
41-
<ItemGroup Condition="!$(TargetFramework.Contains('-android')) AND !$(TargetFramework.Contains('-ios'))">
41+
<ItemGroup Condition="!$(TargetFramework.EndsWith('-android')) AND !$(TargetFramework.EndsWith('-ios'))">
4242
<Content Include="runtimes\**\*.*">
4343
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4444
</Content>
4545
</ItemGroup>
4646

4747
<!-- For releasing runtimes -->
48-
<ItemGroup Condition="!$(TargetFramework.Contains('-android')) AND !$(TargetFramework.Contains('-ios'))">
48+
<ItemGroup Condition="!$(TargetFramework.EndsWith('-android')) AND !$(TargetFramework.EndsWith('-ios'))">
4949
<None Include="runtimes\**\*.*" Pack="true" PackagePath="runtimes\" />
5050
</ItemGroup>
5151

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.416"
4+
}
5+
}

0 commit comments

Comments
 (0)