|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
|
3 | 3 | <Module Id='DotNetClientModule' Guid='97DB49A3-B75E-4AE1-B01A-DFC8E335F866' Language='1033' Codepage='1252' Version='@VERSION@'>
|
4 |
| - <Package Id='????????-????-????-????-????????????' Description='RabbitMQ .NET Client @VERSION@' Manufacturer='GoPivotal, Inc.' InstallerVersion='150' Languages='1033' Compressed='yes' SummaryCodepage='1252' /> |
| 4 | + <Package Id='????????-????-????-????-????????????' Description='RabbitMQ .NET Client @VERSION@' Manufacturer='GoPivotal, Inc.' |
| 5 | + InstallerVersion='150' Languages='1033' Compressed='yes' SummaryCodepage='1252' /> |
5 | 6 | <!-- VERSION is the RabbitMQ release version. This might differ
|
6 | 7 | from the RabbitMQ.Client.dll version (which always has 4
|
7 | 8 | components). -->
|
|
14 | 15 | (i.e. will only have to be specified once, with Assembly='.net'
|
15 | 16 | in order to be copied in both places). -->
|
16 | 17 | <Component Id='ClientLibraryAssembly' Guid='06543EE8-DED2-4C1C-826E-6AAE0B403AF3'>
|
17 |
| - < File Id= 'RabbitMQClientDllAssembly' Name= 'RMQClnt.dll' LongName= 'RabbitMQ.Client.dll' Vital= 'yes' Assembly= '.net' KeyPath= 'yes' Source= '..\tmp\unzip\rabbitmq-dotnet-client-@[email protected]\bin\RabbitMQ.Client.dll' /> |
| 18 | + <File Id='RabbitMQClientDllAssembly' Name='RMQClnt.dll' LongName='RabbitMQ.Client.dll' Vital='yes' Assembly='.net' KeyPath='yes' |
| 19 | + Source='..\tmp\unzip\rabbitmq-dotnet-client-@VERSION@\bin\RabbitMQ.Client.dll' /> |
18 | 20 | </Component>
|
19 | 21 |
|
20 | 22 | <Directory Id='BinFolder' Name='bin'>
|
21 | 23 | <Component Id='ClientLibraryBin' Guid='83A1DE00-CCB6-42C2-BD14-FBAEDDBC50E8'>
|
22 | 24 | <CreateFolder />
|
23 |
| - < File Id= 'RabbitMQClientDllBin' Name= 'RMQClnt.dll' LongName= 'RabbitMQ.Client.dll' Vital= 'yes' KeyPath= 'yes' Source= '..\tmp\unzip\rabbitmq-dotnet-client-@[email protected]\bin\RabbitMQ.Client.dll' /> |
24 |
| - < File Id= 'RabbitMQClientDllXml' Name= 'RMQClnt.xml' LongName= 'RabbitMQ.Client.xml' Vital= 'yes' Source= '..\tmp\unzip\rabbitmq-dotnet-client-@[email protected]\bin\RabbitMQ.Client.xml' /> |
25 |
| - <Registry Id='RabbitMQAssemblyFolderReg' Action='createKeyAndRemoveKeyOnUninstall' Key='SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\RabbitMQ' Root='HKLM'> |
| 25 | + <File Id='RabbitMQClientDllBin' Name='RMQClnt.dll' LongName='RabbitMQ.Client.dll' Vital='yes' KeyPath='yes' |
| 26 | + Source='..\tmp\unzip\rabbitmq-dotnet-client-@VERSION@\bin\RabbitMQ.Client.dll' /> |
| 27 | + <File Id='RabbitMQClientDllXml' Name='RMQClnt.xml' LongName='RabbitMQ.Client.xml' Vital='yes' |
| 28 | + Source='..\tmp\unzip\rabbitmq-dotnet-client-@VERSION@\bin\RabbitMQ.Client.xml' /> |
| 29 | + <Registry Id='RabbitMQAssemblyFolderReg' Action='createKeyAndRemoveKeyOnUninstall' |
| 30 | + Key='SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\RabbitMQ' Root='HKLM'> |
26 | 31 | <Registry Id='RabbitMQAssemblyFolderRegVal' Action='write' Type='string' Value='[BinFolder]' />
|
27 | 32 | </Registry>
|
28 | 33 | </Component>
|
|
31 | 36 | <Directory Id='ExamplesFolder' Name='examples'>
|
32 | 37 | <Directory Id='BinExamplesFolder' Name='bin'>
|
33 | 38 | <Component Id='ExampleBinaries' Guid='1C270D1C-CD79-49D8-9413-E6211F52B5A8'>
|
34 |
| -@FILES ../tmp/unzip/rabbitmq-dotnet-client-@VERSION@-dotnet-2.0/bin -name *.exe |
| 39 | +@FILES ../tmp/unzip/rabbitmq-dotnet-client-@VERSION@/bin -name *.exe |
35 | 40 | </Component>
|
36 | 41 | </Directory>
|
37 | 42 |
|
38 | 43 | <Directory Id='SrcExamplesFolder' Name='src'>
|
39 | 44 | <Component Id='ExampleSources' Guid='962896C3-D476-4C8E-B5F3-BE963D566A49'>
|
40 |
| -@FILES ../tmp/unzip/rabbitmq-dotnet-client-@VERSION@-dotnet-2.0/projects/examples/client -name *.cs -not -name AssemblyInfo.cs |
| 45 | +@FILES ../tmp/unzip/rabbitmq-dotnet-client-@VERSION@/projects/examples/client -name *.cs -not -name AssemblyInfo.cs |
41 | 46 | </Component>
|
42 | 47 | </Directory>
|
43 | 48 |
|
|
0 commit comments