forked from peters/openalpr-windows
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathopenalpr.nuspec
32 lines (29 loc) · 1.59 KB
/
openalpr.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>OpenALPR.$PlatformToolset$.$Platform$.$Configuration$</id>
<title>OpenALPR</title>
<version>$version$</version>
<authors>OpenALPR Technology, Inc.</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
OpenALPR is an open source Automatic License Plate Recognition library written in C++ with bindings in C#, Java, and Python.
The library analyzes images and video streams to identify license plates.
The output is the text representation of any license plate characters.
</description>
<licenseUrl>https://github.com/openalpr/openalpr/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/openalpr/openalpr</projectUrl>
</metadata>
<files>
<file src="$DistDir$\openalpr-net.dll" target="lib\net40\openalpr-net.dll" />
<file src="$DistDir$\opencv**.dll" target="build\native\windows\$Platform$" />
<file src="$DistDir$\openalpr-utils-calibrate.exe" target="build\native\windows\$Platform$" />
<file src="$DistDir$\liblept**.dll" target="build\native\windows\$Platform$" />
<file src="$DistDir$\liblept**.dll" target="build\native\windows\$Platform$" />
<!-- runtime data -->
<file src="$DistDir$\openalpr.conf" target="build\configuration" />
<file src="$DistDir$\runtime_data\**\*.*" target="build\configuration\runtime_data" />
<!-- visual studio -->
<file src="openalpr.targets" target="build\OpenALPR.$PlatformToolset$.$Platform$.$Configuration$.targets" />
</files>
</package>