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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
<Fragment>
<ComponentGroup Id="pnunit_1.1">
<ComponentRef Id="pnunit_agent_1.1"/>
<ComponentRef Id="pnunit_launcher_1.1"/>
<ComponentRef Id="pnunit_framework_1.1"/>
<ComponentRef Id="log4net_1.1"/>
</ComponentGroup>
<ComponentGroup Id="pnunit_2.0">
<ComponentRef Id="pnunit_agent_2.0"/>
<ComponentRef Id="pnunit_launcher_2.0"/>
<ComponentRef Id="pnunit_framework_2.0"/>
<ComponentRef Id="log4net_2.0"/>
</ComponentGroup>
<DirectoryRef Id="net_1.1" FileSource="bin\net-1.1">
<Component Id="pnunit_agent_1.1" DiskId="1" Guid="E2653E43-CF38-4d31-9E24-4BA27B76090D">
<File Id="pnunit_agent_1.1" Name="PNUAGENT.EXE" LongName="pnunit-agent.exe" />
<File Id="pnunit_agent_config_1.1" Name= "PNUAGENT.CFG" LongName="pnunit-agent.exe.config" />
<File Id="agent_conf_1.1" Name="AGENT.CNF" LongName="agent.conf" />
</Component>
<Component Id="pnunit_launcher_1.1" DiskId="1" Guid="545E709A-7DBA-40b1-86FD-2FCA1C16A2F8">
<File Id="pnunit_launcher_1.1" Name="PNULNCHR.EXE" LongName="pnunit-launcher.exe" />
<File Id="pnunit_launcher_config_1.1" Name= "PNULNCHR.CFG" LongName="pnunit-launcher.exe.config" />
<File Id="test_conf_1.1" Name="TEST.CNF" LongName="test.conf" />
</Component>
</DirectoryRef>
<DirectoryRef Id="lib_1.1" FileSource="bin\net-1.1\lib">
<Component Id="log4net_1.1" DiskId="1" Guid="0ED12C18-ED13-42b1-BEBF-4B6999949BD5">
<File Id="log4net_1.1" Name="log4net.dll" />
</Component>
</DirectoryRef>
<DirectoryRef Id="framework_1.1" FileSource="bin\net-1.1\framework">
<Component Id="pnunit_framework_1.1" DiskId="1" Guid="54371643-ABC9-43fe-8150-910533BFD27E">
<File Id="pnunit_framework_1.1" Name="PNUFRMWK.DLL" LongName="pnunit.framework.dll" />
</Component>
</DirectoryRef>
<DirectoryRef Id="net_2.0" FileSource="bin\net-2.0">
<Component Id="pnunit_agent_2.0" DiskId="1" Guid="CB4CF43B-1D4B-40a7-859B-8B48802B3C07">
<File Id="pnunit_agent_2.0" Name="PNUAGENT.EXE" LongName="pnunit-agent.exe" />
<File Id="pnunit_agent_config_2.0" Name= "PNUAGENT.CFG" LongName="pnunit-agent.exe.config" />
<File Id="agent_conf_2.0" Name="AGENT.CNF" LongName="agent.conf" />
</Component>
<Component Id="pnunit_launcher_2.0" DiskId="1" Guid="CB4CF43B-1D4B-40a7-859B-8B48802B3C07">
<File Id="pnunit_launcher_2.0" Name="PNULNCHR.EXE" LongName="pnunit-launcher.exe" />
<File Id="pnunit_launcher_config_2.0" Name= "PNULNCHR.CFG" LongName="pnunit-launcher.exe.config" />
<File Id="test_conf_2.0" Name="TEST.CNF" LongName="test.conf" />
</Component>
</DirectoryRef>
<DirectoryRef Id="lib_2.0" FileSource="bin\net-2.0\lib">
<Component Id="log4net_2.0" DiskId="1" Guid="0D92F103-97A8-4c23-871C-BD1678E454E3">
<File Id="log4net_2.0" Name="log4net.dll" />
</Component>
</DirectoryRef>
<DirectoryRef Id="framework_2.0" FileSource="bin\net-2.0\framework">
<Component Id="pnunit_framework_2.0" DiskId="1" Guid="1BD60D02-58E0-4a8c-A797-302328C5F103">
<File Id="pnunit_framework_2.0" Name="PNUFRMWK.DLL" LongName="pnunit.framework.dll" />
</Component>
</DirectoryRef>
</Fragment>
</Wix>
|