-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use runtime.json for native binary distributions
- Loading branch information
Showing
14 changed files
with
91 additions
and
236 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.vs | ||
bin | ||
obj | ||
obj | ||
lib | ||
include | ||
staticlib | ||
*.nupkg |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-18.7 KB
OpenCV.Net/NuGet/build/native/private/CoApp.NuGetNativeExtensions.dll
Binary file not shown.
Binary file removed
BIN
-33.7 KB
OpenCV.Net/NuGet/build/native/private/CoApp.NuGetNativeMSBuildTasks.dll.orig
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
{ | ||
"runtimes": { | ||
"win-x64": { | ||
"OpenCV.Net": { | ||
"OpenCV.runtime.win-x64": "2.4.8" | ||
} | ||
}, | ||
"win-x86": { | ||
"OpenCV.Net": { | ||
"OpenCV.runtime.win-x86": "2.4.8" | ||
} | ||
} | ||
} | ||
} |
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 @@ | ||
By downloading, copying, installing or using the software you agree to this license. | ||
If you do not agree to this license, do not download, install, | ||
copy or use the software. | ||
|
||
|
||
License Agreement | ||
For Open Source Computer Vision Library | ||
(3-clause BSD License) | ||
|
||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
* Neither the names of the copyright holders nor the names of the contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
|
||
This software is provided by the copyright holders and contributors "as is" and | ||
any express or implied warranties, including, but not limited to, the implied | ||
warranties of merchantability and fitness for a particular purpose are disclaimed. | ||
In no event shall copyright holders or contributors be liable for any direct, | ||
indirect, incidental, special, exemplary, or consequential damages | ||
(including, but not limited to, procurement of substitute goods or services; | ||
loss of use, data, or profits; or business interruption) however caused | ||
and on any theory of liability, whether in contract, strict liability, | ||
or tort (including negligence or otherwise) arising in any way out of | ||
the use of this software, even if advised of the possibility of such damage. |
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
OpenCV/OpenCV.runtime.win-x64/OpenCV.runtime.win-x64.nuspec
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,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd"> | ||
<metadata minClientVersion="2.12"> | ||
<id>OpenCV.runtime.win-x64</id> | ||
<version>2.4.8</version> | ||
<authors>OpenCV team</authors> | ||
<owners>OpenCV team</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="file">LICENSE</license> | ||
<projectUrl>https://opencv.org/</projectUrl> | ||
<description>win x64 native runtime for OpenCV.Net.</description> | ||
<copyright>Copyright © OpenCV team</copyright> | ||
<repository type="git" url="https://github.com/opencv/opencv" branch="2.4" /> | ||
</metadata> | ||
<files> | ||
<file src="..\LICENSE" target="LICENSE" /> | ||
<file src="x64\vc11\bin\*.dll" exclude="**\*d.dll" target="runtimes\win-x64\native" /> | ||
</files> | ||
</package> |
19 changes: 19 additions & 0 deletions
19
OpenCV/OpenCV.runtime.win-x86/OpenCV.runtime.win-x86.nuspec
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,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd"> | ||
<metadata minClientVersion="2.12"> | ||
<id>OpenCV.runtime.win-x86</id> | ||
<version>2.4.8</version> | ||
<authors>OpenCV team</authors> | ||
<owners>OpenCV team</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="file">LICENSE</license> | ||
<projectUrl>https://opencv.org/</projectUrl> | ||
<description>win x86 native runtime for OpenCV.Net.</description> | ||
<copyright>Copyright © OpenCV team</copyright> | ||
<repository type="git" url="https://github.com/opencv/opencv" branch="2.4" /> | ||
</metadata> | ||
<files> | ||
<file src="..\LICENSE" target="LICENSE" /> | ||
<file src="x86\vc11\bin\*.dll" exclude="**\*d.dll" target="runtimes\win-x86\native" /> | ||
</files> | ||
</package> |
Oops, something went wrong.