microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
nuget/NativeNuget.nuspec
47lines · modecode
| 1 | <?xml version="1.0"?> |
| 2 | <!-- ORT Extensions nuspec --> |
| 3 | <package> |
| 4 | <metadata> |
| 5 | <id>Microsoft.ML.OnnxRuntime.Extensions</id> |
| 6 | <version>0.8.0-alpha</version> |
| 7 | <authors>Microsoft</authors> |
| 8 | <owners>Microsoft</owners> |
| 9 | <description>ONNX Runtime Extensions NuGet Package</description> |
| 10 | <!-- TODO: Update release notes prior to 0.8.0 release with new features here --> |
| 11 | <releaseNotes> |
| 12 | General |
| 13 | 1. New custom operators: Whisper, DrawBoundingBoxes, RobertaTokenizer, ClipTokenizer, EncodeImage, DecodeImage |
| 14 | 2. Optional input/output support |
| 15 | 3. ORT custom operator C++ stub generation tool |
| 16 | 4. Operator implementation and documentation improved. |
| 17 | |
| 18 | Mobile |
| 19 | 1. Android package: Maven |
| 20 | 2. iOS package: CocoaPods |
| 21 | 3. PrePostProcessor tool for mobile model |
| 22 | 4. Super-resolution model pre- / post- processing end-to-end examples |
| 23 | </releaseNotes> |
| 24 | <copyright>© Microsoft Corporation. All rights reserved.</copyright> |
| 25 | <tags>ONNX ONNXRuntime AI Machine Learning</tags> |
| 26 | <icon>ORT_icon_for_light_bg.png</icon> |
| 27 | <license type="file">LICENSE.txt</license> |
| 28 | <readme>README.md</readme> |
| 29 | <projectUrl>https://github.com/Microsoft/onnxruntime-extensions</projectUrl> |
| 30 | <repository type="git" url="https://github.com/Microsoft/onnxruntime-extensions.git" commit="COMMIT_ID"/> |
| 31 | </metadata> |
| 32 | <!-- assemble files in the /nuget directory and run nuget pack from --> |
| 33 | <files> |
| 34 | <file src="LICENSE.txt" target="LICENSE.txt" /> |
| 35 | <file src="README.md" target="README.md" /> |
| 36 | <!-- Windows, Linux, macOS via netstandard --> |
| 37 | <file src="..\out\Windows\bin\RelWithDebInfo\ortextensions.dll" target="runtimes\win-x64\native" /> |
| 38 | <file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.props" target="build\native" /> |
| 39 | <file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.props" target="build\netstandard1.1" /> |
| 40 | <file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.props" target="build\netstandard2.0" /> |
| 41 | <file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.targets" target="build\native" /> |
| 42 | <file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.targets" target="build\netstandard1.1" /> |
| 43 | <file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.targets" target="build\netstandard2.0" /> |
| 44 | <file src="..\ThirdPartyNotices.txt" target="ThirdPartyNotices.txt" /> |
| 45 | <file src="ORT_icon_for_light_bg.png" target="ORT_icon_for_light_bg.png" /> |
| 46 | </files> |
| 47 | </package> |
| 48 | |