### Generate Objective-C API Documentation with Jazzy Source: https://github.com/microsoft/onnxruntime-swift-package-manager/blob/main/objectivec/docs/readme.md Run this command from the repository root to generate documentation. Specify the configuration file and the output directory. ```bash jazzy --config objectivec/docs/jazzy_config.yaml --output ``` -------------------------------- ### Sync Objective-C Source Files Source: https://github.com/microsoft/onnxruntime-swift-package-manager/blob/main/release_instructions.md Replace the existing Objective-C source files in the onnxruntime-swift-package-manager repository with those from the corresponding onnxruntime release. ```bash # Replace objectivec directory. rm -r /objectivec cp -r /objectivec /objectivec ``` -------------------------------- ### Checkout onnxruntime Release Tag Source: https://github.com/microsoft/onnxruntime-swift-package-manager/blob/main/release_instructions.md Navigate to the onnxruntime repository and check out the specific release tag that the onnxruntime-swift-package-manager release will correspond to. ```bash cd git checkout ``` -------------------------------- ### Update onnxruntime Binary Target in Package.swift Source: https://github.com/microsoft/onnxruntime-swift-package-manager/blob/main/release_instructions.md Update the 'onnxruntime' binary target in Package.swift to point to the correct release URL and SHA256 checksum. Ensure the version in the URL and the checksum are updated. ```swift // ORT release package.targets.append( Target.binaryTarget(name: "onnxruntime", url: "https://download.onnxruntime.ai/pod-archive-onnxruntime-c-1.19.2.zip", // ^^^^^^ Update version // SHA256 checksum checksum: "28787ee2f966a2c47eb293322c733c5dc4b5e3327cec321c1fe31a7c698edf68") // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Update checksum ) ``` -------------------------------- ### Compute SHA256 Checksum on Linux/MacOS Source: https://github.com/microsoft/onnxruntime-swift-package-manager/blob/main/release_instructions.md Command to compute the SHA256 checksum for a downloaded zip file on Linux or macOS systems. ```bash sha256sum pod-archive-onnxruntime-c-x.y.z.zip ``` -------------------------------- ### Compute SHA256 Checksum on Windows PowerShell Source: https://github.com/microsoft/onnxruntime-swift-package-manager/blob/main/release_instructions.md Command to compute the SHA256 checksum for a downloaded zip file using PowerShell on Windows. ```powershell (Get-FileHash -Algorithm SHA256 pod-archive-onnxruntime-c-x.y.z.zip).Hash.ToLower() ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.