forked from silnrsi/encoding-converters-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.nuspec
44 lines (43 loc) · 2.88 KB
/
Package.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
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<package >
<metadata>
<id>Encoding-Converters-Core</id>
<version>0.2.24</version>
<authors>Bob Eaton, Jim Kornelson, SIL International</authors>
<owners>jnaylor, sillsdev</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/silnrsi/encoding-converters-core</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Libraries and merge modules for core encoding converter functionality.</description>
<releaseNotes>Includes managed DLL (for including in projects as nuget artifacts) in the .\lib\net45\... folder, and other managed and non-managed (read: non-nuget) resources that optionally may be manually added to projects or at least in installers in the .\runtimes\... folder -- including plugin definitions, tlb, and exe files for both Win32/x86 and x64. Some of the resources are also included in various merge modules in the .\installer\MergeModules... folder</releaseNotes>
<copyright>Copyright 2017-2021</copyright>
<tags></tags>
<dependencies>
<group targetFramework=".NETFramework4.5" />
</dependencies>
</metadata>
<files>
<file src="ReadMe.md" />
<!--these are for when you are building x86 (but these are AnyCPU, so it'll work for all platforms)-->
<file src="output\Win32\Release\ECInterfaces.dll" target="lib\net45\x86"/>
<file src="output\Win32\Release\SilEncConverters40.dll" target="lib\net45\x86"/>
<!--these are for when you are building specifically for x64 (these are not AnyCPU)-->
<file src="output\x64\Release\ECInterfaces.dll" target="lib\net45\x64"/>
<file src="output\x64\Release\SilEncConverters40.dll" target="lib\net45\x64"/>
<!--this props file is needed so that when you consume this nuget package, the build will look in the right place for the x86 vs x64
depending on the build configured (this only appears to work for msbuild, which I don't use...)-->
<file src="Encoding-Converters-Core.props" target="lib\net45" />
<!--these are extra bits that any given application might want to use, but aren't specifically referenced by an EncConverters (managed) client
for x86 and then for x64-->
<file src="output\Win32\Release\*.dll" target="runtimes\win-x86\native" />
<file src="output\Win32\Release\*.tlb" target="runtimes\win-x86\native" />
<file src="output\Win32\Release\*.exe" target="runtimes\win-x86\native" />
<file src="output\x64\Release\*.dll" target="runtimes\win-x64\native" />
<file src="output\x64\Release\*.tlb" target="runtimes\win-x64\native" />
<file src="output\x64\Release\*.exe" target="runtimes\win-x64\native" />
<!--these are bits for including in an installer (merge modules, plug-ins, and help files-->
<file src="installer\MergeModules\**\*.*" target="MergeModules" exclude="**\*.wixpdb"/>
<file src="redist\EC\Plugins\*.xml" target="redist\EC\Plugins" />
<file src="redist\Help\**\*.*" target="redist\Help" />
</files>
</package>