microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
nuget/targets/xamarinios10/Microsoft.ML.OnnxRuntime.Extensions.targets
21lines · modecode
| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 3 | <ItemGroup Condition="('$(OutputType)'!='Library' OR '$(IsAppExtension)'=='True')"> |
| 4 | <NativeReference Condition="'$(Platform)' == 'iPhoneSimulator'" Include="$(MSBuildThisFileDirectory)..\..\runtimes\ios\native\onnxruntime_extensions.xcframework\ios-arm64_x86_64-simulator\onnxruntime_extensions.framework"> |
| 5 | <Kind>Framework</Kind> |
| 6 | <IsCxx>True</IsCxx> |
| 7 | <SmartLink>True</SmartLink> |
| 8 | <ForceLoad>True</ForceLoad> |
| 9 | <LinkerFlags>-lc++</LinkerFlags> |
| 10 | <WeakFrameworks>CoreML</WeakFrameworks> |
| 11 | </NativeReference> |
| 12 | <NativeReference Condition="'$(Platform)' == 'iPhone'" Include="$(MSBuildThisFileDirectory)..\..\runtimes\ios\native\onnxruntime_extensions.xcframework\ios-arm64\onnxruntime_extensions.framework"> |
| 13 | <Kind>Framework</Kind> |
| 14 | <IsCxx>True</IsCxx> |
| 15 | <SmartLink>True</SmartLink> |
| 16 | <ForceLoad>True</ForceLoad> |
| 17 | <LinkerFlags>-lc++</LinkerFlags> |
| 18 | <WeakFrameworks>CoreML</WeakFrameworks> |
| 19 | </NativeReference> |
| 20 | </ItemGroup> |
| 21 | </Project> |
| 22 | |