2023-09-29 17:02:19 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-04-09 04:38:17 +03:00
|
|
|
|
<PropertyGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<TargetFrameworks>net8.0-ios;net8.0-android</TargetFrameworks>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseMaui>true</UseMaui>
|
|
|
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
|
|
|
|
|
|
|
|
<ForceSimulatorX64ArchitectureInIDE>true</ForceSimulatorX64ArchitectureInIDE>
|
|
|
|
|
|
|
|
|
|
<!--<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>-->
|
2019-04-09 04:38:17 +03:00
|
|
|
|
<RootNamespace>Bit.iOS.Core</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<CreatePackage>false</CreatePackage>
|
2020-06-05 22:23:15 +03:00
|
|
|
|
</PropertyGroup>
|
2019-04-09 04:38:17 +03:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<CreatePackage>false</CreatePackage>
|
2020-06-05 22:30:24 +03:00
|
|
|
|
</PropertyGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
|
|
|
|
|
<Content Remove="**" />
|
|
|
|
|
<Compile Remove="**" />
|
|
|
|
|
<EmbeddedResource Remove="**" />
|
|
|
|
|
<None Remove="**" />
|
2019-04-09 04:38:17 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
|
|
|
|
|
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2019-04-09 04:38:17 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
2019-04-09 04:38:17 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<None Remove="Handlers\" />
|
2019-04-09 04:38:17 +03:00
|
|
|
|
</ItemGroup>
|
2019-06-27 20:41:32 +03:00
|
|
|
|
<ItemGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
<Folder Include="Handlers\" />
|
2019-06-27 20:41:32 +03:00
|
|
|
|
</ItemGroup>
|
2023-09-29 17:02:19 +03:00
|
|
|
|
</Project>
|