30 lines
988 B
XML
30 lines
988 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0-ios</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
<IsBindingProject>true</IsBindingProject>
|
|
|
|
<!--
|
|
Enable trim analyzers for class libraries.
|
|
To learn more, see: https://learn.microsoft.com/dotnet/core/deploying/trimming/prepare-libraries-for-trimming
|
|
-->
|
|
<IsTrimmable>true</IsTrimmable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ObjcBindingApiDefinition Include="ApiDefinition.cs" />
|
|
<ObjcBindingCoreSource Include="StructsAndEnums.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<XcodeProject Include="NfcLockFramework/NfcLockFramework.xcodeproj">
|
|
<SchemeName>NfcLockFramework</SchemeName>
|
|
<!-- Metadata applicable to @(NativeReference) will be used if set, otherwise the following defaults will be used:
|
|
<Kind>Framework</Kind>
|
|
<SmartLink>true</SmartLink>
|
|
-->
|
|
</XcodeProject>
|
|
</ItemGroup>
|
|
</Project>
|