fix: Force include android/macOS targets to avoid cross-targeting restore issues (#38)

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

* chore: Lower macOS min version
This commit is contained in:
Jérôme Laban 2022-05-21 22:24:07 -04:00 коммит произвёл GitHub
Родитель e53a373d83
Коммит 182d2ff174
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 0 удалений

0
build/_._ Normal file
Просмотреть файл

Просмотреть файл

@ -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>
@ -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>