-
Notifications
You must be signed in to change notification settings - Fork 0
/
jmfb-com-import.nuspec
58 lines (55 loc) · 2.16 KB
/
jmfb-com-import.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>jmfb-com-import</id>
<title>Jmfb.Com.Import</title>
<version>0.0.2</version>
<authors>Jacob Buysse</authors>
<owners>Jacob Buysse</owners>
<summary>C++ COM Import Command Line Utility</summary>
<description>
C++ COM Import Command Line Utility
===================================
Command line utility for importing COM type libraries.
Generates C++ header files.
Usage #1 - Generate importing header files
------------------------------------------
`> com.import example.tlb`
`Importing: example.tlb`
`Importing: C:\Program Files (x86)\Common Files\System\ado\msado21.tlb`
`Importing: C:\Windows\SysWOW64\msvbvm60.dll`
`Generating header: example.h`
`Generating header: msado21.h`
`Generating header: msvbvm60.h`
Usage #2 - Implement a type library
-----------------------------------
`> com.import example.tlb /implement`
`Importing: example.tlb`
`Importing: C:\Program Files (x86)\Common Files\System\ado\msado21.tlb`
`Importing: C:\Windows\SysWOW64\msvbvm60.dll`
`Generating header: example.h`
`Generating source: main.cpp`
`Generating header: Foo.h`
`Generating source: Foo.cpp`
`Generating module definition: example.def`
`Generating resources: example.rc/resource.h`
`Generating packages: packages.config`
`Generating manifest: example.manifest`
`Generating header: msado21.h`
`Generating header: msvbvm60.h`
</description>
<projectUrl>https://github.com/jmfb/Com.Import</projectUrl>
<tags>jmfb-com-import CLI COM C++ cplusplus TLB Import</tags>
<copyright>© 2016 Jacob Buysse</copyright>
<licenseUrl>http://www.gnu.org/licenses/gpl.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>
Added smart pointer wrappers for import.
Added coclass wrappers for implementing a type library.
</releaseNotes>
</metadata>
<files>
<file src="Release\Com.Import.exe" target="tools" />
</files>
</package>