-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test .nuspec for Windows and respective docs (#585)
* add test .nuspec for Windows and respective docs * minor doc change * keep only x64 file entry and use build.bat output dll --------- Co-authored-by: Sayan Shaw <[email protected]> Co-authored-by: Wenbing Li <[email protected]>
- Loading branch information
1 parent
a0c2625
commit 5fd6bcf
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<package> | ||
<metadata> | ||
<id>Microsoft.ML.OnnxRuntime.Extensions</id> | ||
<version>0.9.0</version> | ||
<authors>Microsoft</authors> | ||
<owners>Microsoft</owners> | ||
<description>TEST ONNX Runtime Extensions NuGet Package</description> | ||
<releaseNotes> | ||
This is a test NuGet package - NOT for official release. | ||
</releaseNotes> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<tags>ONNX ONNXRuntime AI Machine Learning</tags> | ||
<icon>ORT_icon_for_light_bg.png</icon> | ||
<license type="file">LICENSE.txt</license> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/Microsoft/onnxruntime-extensions</projectUrl> | ||
<repository type="git" url="https://github.com/Microsoft/onnxruntime-extensions.git"/> | ||
</metadata> | ||
<files> | ||
<file src="LICENSE.txt" target="LICENSE.txt" /> | ||
<file src="README.md" target="README.md" /> | ||
<file src="ORT_icon_for_light_bg.png" target="ORT_icon_for_light_bg.png" /> | ||
<file src="..\ThirdPartyNotices.txt" target="ThirdPartyNotices.txt" /> | ||
|
||
<!-- Src paths for local Windows build via netstandard --> | ||
<file src="..\out\Windows\bin\RelWithDebInfo\ortextensions.dll" target="runtimes\win-x64\native" /> | ||
<file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.props" target="build\netstandard1.1" /> | ||
<file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.props" target="build\netstandard2.0" /> | ||
<file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.targets" target="build\netstandard1.1" /> | ||
<file src="targets\netstandard\Microsoft.ML.OnnxRuntime.Extensions.targets" target="build\netstandard2.0" /> | ||
</files> | ||
</package> |