Skip to content

Commit

Permalink
fix: Force include android/macOS targets to avoid cross-targeting res…
Browse files Browse the repository at this point in the history
…tore issues (#38)

* fix: Force include android/macOS targets to avoid cross-targeting restore issues

* chore: Lower macOS min version
  • Loading branch information
jeromelaban authored May 22, 2022
1 parent e53a373 commit 182d2ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Empty file added build/_._
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoNFloatUsing>true</NoNFloatUsing>

<NoWarn>$(NoWarn);NU5128</NoWarn>

<SupportedOSPlatformVersion Condition="'$(TargetFramework)'=='net6.0-ios'">10.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="'$(TargetFramework)'=='net6.0-maccatalyst'">13.1</SupportedOSPlatformVersion>
Expand All @@ -17,4 +19,9 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.1.1" />
</ItemGroup>

<ItemGroup>
<Content Include="..\..\build\_._" PackagePath="lib\net6.0-macos10.14" Pack="true" Visible="False" />
<Content Include="..\..\build\_._" PackagePath="lib\net6.0-android31.0" Pack="true" Visible="False" />
</ItemGroup>
</Project>

0 comments on commit 182d2ff

Please sign in to comment.