~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/Setup/Files.wxs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- Defines all the directories, files and components to be installed -->
 
2
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
 
3
        <Fragment>
 
4
                <DirectoryRef Id="TARGETDIR">
 
5
                        <!-- SharpDevelop installation directory and files -->
 
6
                        <Directory Id="ProgramFilesFolder" Name="PFiles">
 
7
                                <Directory Id="SharpDevelopFolder" Name="SharpDevelop">
 
8
                                        <Directory Id="INSTALLDIR" Name="$(var.PRODUCTMAJORVERSION)">
 
9
                                                <Directory Id="BinFolder" Name="bin">
 
10
                                                        <Component Id="SharpDevelopExe" Guid="F632C62C-A4DD-4507-9678-C7DCFF4DBC8C" DiskId="1">
 
11
                                                                <File Id="SharpDevelop.exe" Name="SharpDevelop.exe" Source="..\..\bin\SharpDevelop.exe" Assembly=".net" AssemblyApplication="SharpDevelop.exe" AssemblyManifest="SharpDevelop.exe" KeyPath="yes">
 
12
                                                                        <!--
 
13
                                                                                NGens SharpDevelop.exe. Needs the NetFx extension (WixNetFxExtension.dll),
 
14
                                                                                library (netfx.wixlib) and custom actions (netfxca.dll).
 
15
 
 
16
                                                                                Priority=0 means the image generation occurs during
 
17
                                                                                setup. Other values defer the generation.
 
18
 
 
19
                                                                                Default Platform value is 32bit which tries to generate images 
 
20
                                                                                for 32 bitversions of the .NET framework on the 
 
21
                                                                                target machine. This will fail on a machine with 
 
22
                                                                                64 bit version of .NET. Cannot use Platform=all
 
23
                                                                                since this runs NGen for both 32 and 64 bit versions
 
24
                                                                                regardless of whether they exist on the target
 
25
                                                                                machine.
 
26
                                                                        -->
 
27
                                                                        <!-- Using priority 1 because 0 slows down setup and might have a bug that causes it to work like priority 3 (http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg34312.html). -->
 
28
                                                                        <netfx:NativeImage Id="SharpDevelopNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
29
                                                                </File>
 
30
                                                        </Component>
 
31
                                                        <Component Id="BooProjectFileAssociation" Guid="8FD60FEE-9220-4409-B98E-273AAC4A03E0" DiskId="1">
 
32
                                                                <!--
 
33
                                                                        Get several ICE33 warnings using the ProgId element
 
34
                                                                        but these apparently can safely be ignored 
 
35
                                                                        according to a post on the wix-users list by
 
36
                                                                        Rob Mencshing. Also using the ProgId element
 
37
                                                                        does not create the ProgId table. The current installer
 
38
                                                                        no longer uses the ProgId but instead uses Registry
 
39
                                                                        keys instead. It still creates the same entries in the
 
40
                                                                        msi.
 
41
        
 
42
                                                                        http://sourceforge.net/mailarchive/message.php?msg_id=9075241
 
43
        
 
44
                                                                        Note that the Target of the form [#FileId] expands out to the
 
45
                                                                        full path of the file. A target of the form [!FileId]
 
46
                                                                        expands to the short name of the file (i.e. it includes ~
 
47
                                                                        characters). We need the full path otherwise the exe name
 
48
                                                                        will be something like SharpDev~1.exe and the 
 
49
                                                                        SharpDevelop.exe.manifest file will not be found when
 
50
                                                                        running the application so it does not use XP visual styles.
 
51
                                                                        Unfortunately using [#FileId] generates lots of ICE69 
 
52
                                                                        warnings for the icon and the SharpDevelop.exe target 
 
53
                                                                        if they are in a different component.
 
54
                                                                        Not sure why [!FileId] does not produce an error since
 
55
                                                                        the problem seems to be similar, basically the registry
 
56
                                                                        key generated by the ProgId element belongs to one 
 
57
                                                                        component whilst we are referencing another component 
 
58
                                                                        containing the SharpDevelop.exe and another
 
59
                                                                        containing the icon. 
 
60
 
 
61
                                                                        http://msdn.microsoft.com/library/en-us/msi/setup/ice69.asp
 
62
 
 
63
                                                                        The ICE69 errors can be ignored for now since the component
 
64
                                                                        being referenced by the file associations will always be installed
 
65
                                                                        even though it is in a different feature. If the FileTypeRegister
 
66
                                                                        addin is an optional install then the ICE69 errors would need to
 
67
                                                                        be resolved.
 
68
 
 
69
                                                                        We are not using the ProgId element which sets up the
 
70
                                                                        file association registry keys for us, but are specifying them
 
71
                                                                        directly as registry keys. This allows us to use one of the keys
 
72
                                                                        as a key path instead of having to use the parent component's
 
73
                                                                        directory as the key path. The key path is what is used
 
74
                                                                        by the installer to detect whether the component is installed.
 
75
                                                                        Using the component's parent directory (i.e. the Bin folder)
 
76
                                                                        is not feasible since the file associations may not be installed
 
77
                                                                        if the user does not install them in the feature tree.
 
78
                                                                -->
 
79
                                                                <RegistryValue Id="SD.booprojfile" Root="HKCR" Type="string" Key="SD.booprojfile" Value="Boo Project" KeyPath="yes" />
 
80
                                                                <RegistryValue Id="SD.booprojfile.command" Root="HKCR" Type="string" Key="SD.booprojfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
81
                                                                <RegistryValue Id="SD.booprojfile.icon" Root="HKCR" Type="string" Key="SD.booprojfile\DefaultIcon" Value="&quot;[#prjx.ico]&quot;" />
 
82
                                                                <RegistryValue Id="SD.booprojfile.association" Root="HKCR" Type="string" Key=".booproj" Value="SD.booprojfile" />
 
83
                                                        </Component>
 
84
                                                        <Component Id="CSharpFileAssociation" Guid="C98CAD28-2903-4B3A-8C56-B4A09AEC4509" DiskId="1">
 
85
                                                                <RegistryValue Id="SD.csfile" Root="HKCR" Type="string" Key="SD.csfile" Value="C# File" KeyPath="yes" />
 
86
                                                                <RegistryValue Id="SD.csfile.command" Root="HKCR" Type="string" Key="SD.csfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
87
                                                                <RegistryValue Id="SD.csfile.icon" Root="HKCR" Type="string" Key="SD.csfile\DefaultIcon" Value="&quot;[#cs.ico]&quot;" />
 
88
                                                                <RegistryValue Id="SD.csfile.association" Root="HKCR" Type="string" Key=".cs" Value="SD.csfile" />
 
89
                                                        </Component>
 
90
                                                        <Component Id="SharpDevelopCSharpProjectFileAssociation" Guid="3BDC1362-4363-42AF-821D-B06516A715E2" DiskId="1">
 
91
                                                                <RegistryValue Id="SD.csprojfile" Root="HKCR" Type="string" Key="SD.csprojfile" Value="C# Project" KeyPath="yes" />
 
92
                                                                <RegistryValue Id="SD.csproj.command" Root="HKCR" Type="string" Key="SD.csprojfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
93
                                                                <RegistryValue Id="SD.csproj.icon" Root="HKCR" Type="string" Key="SD.csprojfile\DefaultIcon" Value="&quot;[#prjx.ico]&quot;" />
 
94
                                                                <RegistryValue Id="SD.csproj.association" Root="HKCR" Type="string" Key=".csproj" Value="SD.csprojfile" />
 
95
                                                        </Component>
 
96
                                                        <Component Id="PythonProjectFileAssociation" Guid="6BA02209-9C7A-42A3-85BC-407FA4C0B646" DiskId="1">
 
97
                                                                <RegistryValue Id="SD.pyprojfile" Root="HKCR" Type="string" Key="SD.pyprojfile" Value="Python Project File" KeyPath="yes" />
 
98
                                                                <RegistryValue Id="SD.pyprojfile.command" Root="HKCR" Type="string" Key="SD.pyprojfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
99
                                                                <RegistryValue Id="SD.pyprojfile.icon" Root="HKCR" Type="string" Key="SD.pyprojfile\DefaultIcon" Value="&quot;[#prjx.ico]&quot;" />
 
100
                                                                <RegistryValue Id="SD.pyprojfile.association" Root="HKCR" Type="string" Key=".pyproj" Value="SD.pyprojfile" />
 
101
                                                        </Component>
 
102
                                                        <Component Id="ResxFileAssociation" Guid="EA3BA93F-C2EE-4FB2-AEA7-A661A3054AB1" DiskId="1">
 
103
                                                                <RegistryValue Id="SD.resxfile" Root="HKCR" Type="string" Key="SD.resxfile" Value="Resx File" KeyPath="yes" />
 
104
                                                                <RegistryValue Id="SD.resxfile.command" Root="HKCR" Type="string" Key="SD.resxfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
105
                                                                <RegistryValue Id="SD.resxfile.icon" Root="HKCR" Type="string" Key="SD.resxfile\DefaultIcon" Value="&quot;[#resx.ico]&quot;" />
 
106
                                                                <RegistryValue Id="SD.resxfile.association" Root="HKCR" Type="string" Key=".resx" Value="SD.resxfile" />
 
107
                                                        </Component>
 
108
                                                        <Component Id="ResourcesFileAssociation" Guid="9CC7AE6F-F0B2-47E7-9DD4-0C571C89F46D" DiskId="1">
 
109
                                                                <RegistryValue Id="SD.resourcesfile" Root="HKCR" Type="string" Key="SD.resourcesfile" Value="Resources File" KeyPath="yes" />
 
110
                                                                <RegistryValue Id="SD.resourcesfile.command" Root="HKCR" Type="string" Key="SD.resourcesfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
111
                                                                <RegistryValue Id="SD.resourcesfile.icon" Root="HKCR" Type="string" Key="SD.resourcesfile\DefaultIcon" Value="&quot;[#resx.ico]&quot;" />
 
112
                                                                <RegistryValue Id="SD.resourcesfile.association" Root="HKCR" Type="string" Key=".resources" Value="SD.resourcesfile" />
 
113
                                                        </Component>
 
114
                                                        <Component Id="SharpDevelopAddInFileAssociation" Guid="EBBEA1CE-1CA8-4A69-81ED-D81BD8597A39" DiskId="1">
 
115
                                                                <RegistryValue Id="SD.sdaddinfile" Root="HKCR" Type="string" Key="SD.sdaddinfile" Value="SharpDevelop AddIn Installation Package" KeyPath="yes" />
 
116
                                                                <RegistryValue Id="SD.sdaddinfile.command" Root="HKCR" Type="string" Key="SD.sdaddinfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
117
                                                                <RegistryValue Id="SD.sdaddinfile.icon" Root="HKCR" Type="string" Key="SD.sdaddinfile\DefaultIcon" Value="&quot;[#addin.ico]&quot;" />
 
118
                                                                <RegistryValue Id="SD.sdaddinfile.association" Root="HKCR" Type="string" Key=".sdaddin" Value="SD.sdaddinfile" />
 
119
                                                        </Component>
 
120
                                                        <Component Id="VBFileAssociation" Guid="C25FF25E-6E21-432A-A477-40293CE8783B" DiskId="1">
 
121
                                                                <RegistryValue Id="SD.vbfile" Root="HKCR" Type="string" Key="SD.vbfile" Value="VB.NET File" KeyPath="yes" />
 
122
                                                                <RegistryValue Id="SD.vbfile.command" Root="HKCR" Type="string" Key="SD.vbfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
123
                                                                <RegistryValue Id="SD.vbfile.icon" Root="HKCR" Type="string" Key="SD.vbfile\DefaultIcon" Value="&quot;[#vb.ico]&quot;" />
 
124
                                                                <RegistryValue Id="SD.vbfile.association" Root="HKCR" Type="string" Key=".vb" Value="SD.vbfile" />
 
125
                                                        </Component>
 
126
                                                        <Component Id="SharpDevelopVBProjectFileAssociation" Guid="BDA641EE-B110-4E09-B4C6-7D2DBBFA578A" DiskId="1">
 
127
                                                                <RegistryValue Id="SD.vbprojfile" Root="HKCR" Type="string" Key="SD.vbprojfile" Value="VB.NET Project" KeyPath="yes" />
 
128
                                                                <RegistryValue Id="SD.vbprojfile.command" Root="HKCR" Type="string" Key="SD.vbprojfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
129
                                                                <RegistryValue Id="SD.vbprojfile.icon" Root="HKCR" Type="string" Key="SD.vbprojfile\DefaultIcon" Value="&quot;[#prjx.ico]&quot;" />
 
130
                                                                <RegistryValue Id="SD.vbprojfile.association" Root="HKCR" Type="string" Key=".vbproj" Value="SD.vbprojfile" />
 
131
                                                        </Component>
 
132
                                                        <Component Id="SharpDevelopWixProjectFileAssociation" Guid="FB612902-CD8E-4161-8F95-3280AE433D11" DiskId="1">
 
133
                                                                <RegistryValue Id="SD.wixprojfile" Root="HKCR" Type="string" Key="SD.wixprojfile" Value="WiX Project" KeyPath="yes" />
 
134
                                                                <RegistryValue Id="SD.wixprojfile.command" Root="HKCR" Type="string" Key="SD.wixprojfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
135
                                                                <RegistryValue Id="SD.wixprojfile.icon" Root="HKCR" Type="string" Key="SD.wixprojfile\DefaultIcon" Value="&quot;[#prjx.ico]&quot;" />
 
136
                                                                <RegistryValue Id="SD.wixprojfile.association" Root="HKCR" Type="string" Key=".wixproj" Value="SD.wixprojfile" />
 
137
                                                        </Component>
 
138
                                                        <Component Id="XmlFileAssociation" Guid="EB0CC9A4-2934-465B-831F-0EC4B718A162" DiskId="1">
 
139
                                                                <RegistryValue Id="SD.xmlfile" Root="HKCR" Type="string" Key="SD.xmlfile" Value="XML File" KeyPath="yes" />
 
140
                                                                <RegistryValue Id="SD.xmlfile.command" Root="HKCR" Type="string" Key="SD.xmlfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
141
                                                                <RegistryValue Id="SD.xmlfile.icon" Root="HKCR" Type="string" Key="SD.xmlfile\DefaultIcon" Value="&quot;[#xml.ico]&quot;" />
 
142
                                                                <RegistryValue Id="SD.xmlfile.association" Root="HKCR" Type="string" Key=".xml" Value="SD.xmlfile" />
 
143
                                                        </Component>
 
144
                                                        <Component Id="SharpDevelopSolutionFileAssociation" Guid="A5E7E0DE-7A32-439D-8155-C4335A2E4876" DiskId="1">
 
145
                                                                <RegistryValue Id="SD.slnfile" Root="HKCR" Type="string" Key="SD.slnfile" Value="SharpDevelop Solution" KeyPath="yes" />
 
146
                                                                <RegistryValue Id="SD.slnfile.command" Root="HKCR" Type="string" Key="SD.slnfile\shell\open\command" Value="&quot;[#SharpDevelop.exe]&quot; &quot;%1&quot;" />
 
147
                                                                <RegistryValue Id="SD.slnfile.icon" Root="HKCR" Type="string" Key="SD.slnfile\DefaultIcon" Value="&quot;[#cmbx.ico]&quot;" />
 
148
                                                                <RegistryValue Id="SD.slnfile.association" Root="HKCR" Type="string" Key=".sln" Value="SD.slnfile" />
 
149
                                                        </Component>
 
150
                                                        <Component Id="SharpDevelopExeFiles" Guid="B9427DC8-6C86-4D1A-B3DC-1B0E0F1F1DC1" DiskId="1">
 
151
                                                                <File Source="..\..\bin\SharpDevelop.exe.config" Id="SharpDevelop.exe.config" Name="SharpDevelop.exe.config" />
 
152
                                                        </Component>
 
153
                                                        <Component Id="ICSharpCodeBuildTasksDll" Guid="E94FCC8C-9741-45EF-AFDA-9F9CF02BF3F7" DiskId="1">
 
154
                                                                <File Source="..\..\bin\ICSharpCode.Build.Tasks.dll" Id="ICSharpCode.Build.Tasks.dll" Name="ICSharpCode.Build.Tasks.dll" Assembly=".net" AssemblyApplication="ICSharpCode.Build.Tasks.dll" AssemblyManifest="ICSharpCode.Build.Tasks.dll" KeyPath="yes" />
 
155
                                                        </Component>
 
156
                                                        <Component Id="BuildTasksTargetFiles" DiskId="1" Guid="55F82461-DEED-43BB-8A79-7243B762EA60">
 
157
                                                                <File Source="..\..\bin\SharpDevelop.Build.Common.targets" Id="SharpDevelop.Build.Common.targets" Name="SharpDevelop.Build.Common.targets" />
 
158
                                                                <File Source="..\..\bin\SharpDevelop.Build.MSIL.targets" Id="SharpDevelop.Build.MSIL.targets" Name="SharpDevelop.Build.MSIL.targets" />
 
159
                                                                <File Source="..\..\bin\SharpDevelop.CodeAnalysis.targets" Id="SharpDevelop.CodeAnalysis.targets" Name="SharpDevelop.CodeAnalysis.targets" />
 
160
                                                                <File Source="..\..\bin\SharpDevelop.CheckMSBuild35Features.targets" Id="SharpDevelop.CheckMSBuild35Features.targets" Name="SharpDevelop.CheckMSBuild35Features.targets" />
 
161
                                                                <File Source="..\..\bin\SharpDevelop.TargetingPack.targets" Id="SharpDevelop.TargetingPack.targets" Name="SharpDevelop.TargetingPack.targets" />
 
162
                                                        </Component>
 
163
                                                        <Component Id="ICSharpCodeCoreDll" Guid="DFD67330-0F6D-4069-9B03-90E2BB7B9273" DiskId="1">
 
164
                                                                <File Source="..\..\bin\ICSharpCode.Core.dll" Id="ICSharpCode.Core.dll" Name="ICSharpCode.Core.dll" Assembly=".net" AssemblyApplication="ICSharpCode.Core.dll" AssemblyManifest="ICSharpCode.Core.dll" KeyPath="yes" />
 
165
                                                        </Component>
 
166
                                                        <Component Id="ICSharpCodeNRefactoryDll" Guid="53FE6482-01C2-45DE-9929-A84510CDF39C" DiskId="1">
 
167
                                                                <File Source="..\..\bin\ICSharpCode.NRefactory.dll" Id="ICSharpCode.NRefactory.dll" Name="ICSharpCode.NRefactory.dll" Assembly=".net" AssemblyApplication="ICSharpCode.NRefactory.dll" AssemblyManifest="ICSharpCode.NRefactory.dll" KeyPath="yes" />
 
168
                                                        </Component>
 
169
                                                        <Component Id="ICSharpCodeSharpDevelopDll" Guid="CC2E4AAB-58C0-40B7-B440-1D7F65EED379" DiskId="1">
 
170
                                                                <File Source="..\..\bin\ICSharpCode.SharpDevelop.dll" Id="ICSharpCode.SharpDevelop.dll" Name="ICSharpCode.SharpDevelop.dll" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.dll" AssemblyManifest="ICSharpCode.SharpDevelop.dll" KeyPath="yes" />
 
171
                                                        </Component>
 
172
                                                        <Component Id="ICSharpCodeSharpDevelopDomDll" Guid="3F7DB0E5-6755-419B-85E1-6A52372D25FA" DiskId="1">
 
173
                                                                <File Source="..\..\bin\ICSharpCode.SharpDevelop.Dom.dll" Id="ICSharpCode.SharpDevelop.Dom.dll" Name="ICSharpCode.SharpDevelop.Dom.dll" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.Dom.dll" AssemblyManifest="ICSharpCode.SharpDevelop.Dom.dll" KeyPath="yes" />
 
174
                                                        </Component>
 
175
                                                        <Component Guid="C35A1267-0E57-4DBE-95C7-0CA13E8F3C56" Id="ICSharpCodeSharpDevelopWidgets" DiskId="1">
 
176
                                                                <File Source="..\..\bin\ICSharpCode.SharpDevelop.Widgets.dll" Id="ICSharpCode.SharpDevelop.Widgets.dll" Name="ICSharpCode.SharpDevelop.Widgets.dll" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.Widgets.dll" AssemblyManifest="ICSharpCode.SharpDevelop.Widgets.dll" KeyPath="yes" />
 
177
                                                        </Component>
 
178
                                                        <Component Id="ICSharpCodeSharpDevelopSdaFiles" Guid="12B16781-2FFE-4E80-A78E-73F1425991BF" DiskId="1">
 
179
                                                                <File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.dll" Id="ICSharpCode.SharpDevelop.Sda.dll" Name="ICSharpCode.SharpDevelop.Sda.dll" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.Sda.dll" AssemblyManifest="ICSharpCode.SharpDevelop.Sda.dll" KeyPath="yes" />
 
180
                                                                <File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.dll.config" Id="ICSharpCode.SharpDevelop.Sda.dll.config" Name="ICSharpCode.SharpDevelop.Sda.dll.config" />
 
181
                                                                <File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.xml" Id="ICSharpCode.SharpDevelop.Sda.xml" Name="ICSharpCode.SharpDevelop.Sda.xml" />
 
182
                                                        </Component>
 
183
                                                        <Component Id="log4netDll" Guid="0CE6ECAC-3C96-419E-9EA9-01F95C2C17BC" DiskId="1">
 
184
                                                                <File Source="..\..\bin\log4net.dll" Name="log4net.dll" Id="log4net.dll" Assembly=".net" AssemblyApplication="log4net.dll" AssemblyManifest="log4net.dll" KeyPath="yes" />
 
185
                                                        </Component>
 
186
                                                        <Component Id="GraphSharpDll" Guid="f0095de3-7fdb-4a63-961f-6b3b9f8a754f" DiskId="1">
 
187
                                                                <File Source="..\..\bin\GraphSharp.dll" Name="GraphSharp.dll" Id="GraphSharp.dll" Assembly=".net" AssemblyApplication="GraphSharp.dll" AssemblyManifest="GraphSharp.dll" KeyPath="yes" />
 
188
                                                        </Component>
 
189
                                                        <Component Id="GraphSharpControlsDll" Guid="8c7d8646-b2f4-4285-8880-5d86a1aea4f3" DiskId="1">
 
190
                                                                <File Source="..\..\bin\GraphSharp.Controls.dll" Name="GraphSharp.Controls.dll" Id="GraphSharp.Controls.dll" Assembly=".net" AssemblyApplication="GraphSharp.Controls.dll" AssemblyManifest="GraphSharp.Controls.dll" KeyPath="yes" />
 
191
                                                        </Component>
 
192
                                                        <Component Id="QuickGraphDll" Guid="f0893d49-6690-4cb7-ac7a-2931a8146134" DiskId="1">
 
193
                                                                <File Source="..\..\bin\QuickGraph.dll" Name="QuickGraph.dll" Id="QuickGraph.dll" Assembly=".net" AssemblyApplication="QuickGraph.dll" AssemblyManifest="QuickGraph.dll" KeyPath="yes" />
 
194
                                                        </Component>
 
195
                                                        <Component Id="GraphSharpContractsDll" Guid="a0a8f6a4-3caa-4095-a9e2-fa25ce239b13" DiskId="1">
 
196
                                                                <File Source="..\..\bin\GraphSharp.Contracts.dll" Name="GraphSharp.Contracts.dll" Id="GraphSharp.Contracts.dll" Assembly=".net" AssemblyApplication="GraphSharp.Contracts.dll" AssemblyManifest="GraphSharp.Contracts.dll" KeyPath="yes" />
 
197
                                                        </Component>
 
198
                                                        <Component Id="MicrosoftContractsDll" Guid="fce77701-43d5-41a2-92fa-636050893a54" DiskId="1">
 
199
                                                                <File Source="..\..\bin\Microsoft.Contracts.dll" Name="Microsoft.Contracts.dll" Id="Microsoft.Contracts.dll" Assembly=".net" AssemblyApplication="Microsoft.Contracts.dll" AssemblyManifest="Microsoft.Contracts.dll" KeyPath="yes" />
 
200
                                                        </Component>
 
201
                                                        <Component Id="WPFExtensionsDll" Guid="932d7d54-773c-4132-ba0a-31f0d4590ee5" DiskId="1">
 
202
                                                                <File Source="..\..\bin\WPFExtensions.dll" Name="WPFExtensions.dll" Id="WPFExtensions.dll" Assembly=".net" AssemblyApplication="WPFExtensions.dll" AssemblyManifest="WPFExtensions.dll" KeyPath="yes" />
 
203
                                                        </Component>
 
204
                                                        <Component Id="MonoCecilDll" Guid="F714FD47-9E0A-488F-8F44-11C0220721E3" DiskId="1">
 
205
                                                                <File Source="..\..\bin\Mono.Cecil.dll" Id="Mono.Cecil.dll" Name="Mono.Cecil.dll" Assembly=".net" AssemblyApplication="Mono.Cecil.dll" AssemblyManifest="Mono.Cecil.dll" KeyPath="yes" />
 
206
                                                        </Component>
 
207
                                                        <Directory Id="ToolsFolder" Name="Tools">
 
208
                                                                <Directory Id="WixFolder" Name="Wix">
 
209
                                                                        <Component Guid="78F8DB04-62B1-4A2F-A0D5-D8D890FE5D02" Id="WixVSExtension" DiskId="1">
 
210
                                                                                <File Source="..\..\bin\Tools\Wix\WixVSExtension.dll" Id="WixVSExtension.dll" Name="WixVSExtension.dll" Assembly=".net" AssemblyApplication="WixVSExtension.dll" AssemblyManifest="WixVSExtension.dll" KeyPath="yes" />
 
211
                                                                        </Component>
 
212
                                                                        <Component Id="CandleExe" Guid="F76A6F0B-FE35-428A-9DFA-ED1BEB5322AF" DiskId="1">
 
213
                                                                                <File Source="..\..\bin\Tools\Wix\candle.exe" Name="candle.exe" Id="candle.exe" Assembly=".net" AssemblyApplication="candle.exe" AssemblyManifest="candle.exe" KeyPath="yes" />
 
214
                                                                                <File Source="..\..\bin\Tools\Wix\candle.exe.config" Id="candle.exe.config" Name="candle.exe.config" />
 
215
                                                                        </Component>
 
216
                                                                        <Component Id="WixLicenseFiles" Guid="48DABE56-3E5A-41C3-8451-236C9E9EF3C3" DiskId="1">
 
217
                                                                                <File Source="..\..\bin\Tools\Wix\CPL.TXT" Name="CPL.TXT" Id="CPL.TXT" />
 
218
                                                                        </Component>
 
219
                                                                        <Component Id="DarkExe" Guid="45BAAB13-6E19-42DA-80BE-8C44EAD8A24E" DiskId="1">
 
220
                                                                                <File Source="..\..\bin\Tools\Wix\dark.exe" Name="dark.exe" Id="dark.exe" Assembly=".net" AssemblyApplication="dark.exe" AssemblyManifest="dark.exe" KeyPath="yes" />
 
221
                                                                                <File Source="..\..\bin\Tools\Wix\dark.exe.config" Id="dark.exe.config" Name="dark.exe.config" />
 
222
                                                                        </Component>
 
223
                                                                        <Component Id="LightExe" Guid="FFC7503F-A9BC-484C-BA88-4C0F700329DE" DiskId="1">
 
224
                                                                                <File Source="..\..\bin\Tools\Wix\light.exe" Name="light.exe" Id="light.exe" Assembly=".net" AssemblyApplication="light.exe" AssemblyManifest="light.exe" KeyPath="yes" />
 
225
                                                                                <File Source="..\..\bin\Tools\Wix\light.exe.config" Id="light.exe.config" Name="light.exe.config" />
 
226
                                                                        </Component>
 
227
                                                                        <Component Id="LitExe" Guid="58312D82-CA9F-432C-BDE4-B96C6CC4EB22" DiskId="1">
 
228
                                                                                <File Source="..\..\bin\Tools\Wix\lit.exe" Name="lit.exe" Id="lit.exe" Assembly=".net" AssemblyApplication="lit.exe" AssemblyManifest="lit.exe" KeyPath="yes" />
 
229
                                                                                <File Source="..\..\bin\Tools\Wix\lit.exe.config" Id="lit.exe.config" Name="lit.exe.config" />
 
230
                                                                        </Component>
 
231
                                                                        <Component Id="MergeModDll" Guid="2A3A1AA5-CB60-410A-B488-64F0A99682FF" DiskId="1">
 
232
                                                                                <File Source="..\..\bin\Tools\Wix\mergemod.dll" Name="mergemod.dll" Id="mergemod.dll" />
 
233
                                                                        </Component>
 
234
                                                                        <Component Id="MicrosoftToolsWindowsInstallerXmlNAntTasksDll" Guid="BD16E99F-24CB-4D91-A763-5F513A528DBD" DiskId="1">
 
235
                                                                                <File Source="..\..\bin\Tools\Wix\Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" Id="Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" Name="Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" Assembly=".net" AssemblyApplication="Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" AssemblyManifest="Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" KeyPath="yes" />
 
236
                                                                        </Component>
 
237
                                                                        <Component Id="WInteropDll" Guid="55EC9E38-B9E5-40E0-9B13-959154F215AB" DiskId="1">
 
238
                                                                                <File Source="..\..\bin\Tools\Wix\winterop.dll" Name="winterop.dll" Id="winterop.dll" />
 
239
                                                                        </Component>
 
240
                                                                        <Component Id="WixDll" Guid="C0A01A75-4EED-49D5-BAC4-B218236D4524" DiskId="1">
 
241
                                                                                <File Source="..\..\bin\Tools\Wix\wix.dll" Name="wix.dll" Id="wix.dll" Assembly=".net" AssemblyApplication="wix.dll" AssemblyManifest="wix.dll" KeyPath="yes" />
 
242
                                                                        </Component>
 
243
                                                                        <Component Id="WixCopExe" Guid="9DB7F19E-E737-46FC-A07B-1EEB7C710680" DiskId="1">
 
244
                                                                                <File Source="..\..\bin\Tools\Wix\WixCop.exe" Name="WixCop.exe" Id="WixCop.exe" Assembly=".net" AssemblyApplication="WixCop.exe" AssemblyManifest="WixCop.exe" KeyPath="yes" />
 
245
                                                                        </Component>
 
246
                                                                        <Component Id="WixNetFxExtensionDll" Guid="CED55A4E-1F05-471F-8EA5-73277E3EFEFA" DiskId="1">
 
247
                                                                                <File Source="..\..\bin\Tools\Wix\WixNetFxExtension.dll" Id="WixNetFxExtension.dll" Name="WixNetFxExtension.dll" Assembly=".net" AssemblyApplication="WixNetFxExtension.dll" AssemblyManifest="WixNetFxExtension.dll" KeyPath="yes" />
 
248
                                                                        </Component>
 
249
                                                                        <Component Id="WixTasksDll" Guid="B07D86EB-BB9A-4FD6-A882-2F0537AB21B5" DiskId="1">
 
250
                                                                                <File Source="..\..\bin\Tools\Wix\wix.targets" Id="wix.targets" Name="wix.targets" />
 
251
                                                                                <File Source="..\..\bin\Tools\Wix\WixTasks.dll" Name="WixTasks.dll" Id="WixTasks.dll" Assembly=".net" AssemblyApplication="WixTasks.dll" AssemblyManifest="WixTasks.dll" KeyPath="yes" />
 
252
                                                                        </Component>
 
253
                                                                        <Directory Id="WixBitmapsFolder" Name="Bitmaps">
 
254
                                                                                <Component Guid="363E0512-B16C-43ED-A1BE-CE91DBD2463E" Id="WixBitmapFiles" DiskId="1">
 
255
                                                                                        <File Source="..\..\bin\Tools\Wix\Bitmaps\bannrbmp.bmp" Name="bannrbmp.bmp" Id="bannrbmp.bmp" />
 
256
                                                                                        <File Source="..\..\bin\Tools\Wix\Bitmaps\dlgbmp.bmp" Name="dlgbmp.bmp" Id="dlgbmp.bmp" />
 
257
                                                                                        <File Source="..\..\bin\Tools\Wix\Bitmaps\exclamic.ico" Name="exclamic.ico" Id="exclamic.ico" />
 
258
                                                                                        <File Source="..\..\bin\Tools\Wix\Bitmaps\info.ico" Name="info.ico" Id="info.ico" />
 
259
                                                                                        <File Source="..\..\bin\Tools\Wix\Bitmaps\New.ico" Name="New.ico" Id="New.ico" />
 
260
                                                                                        <File Source="..\..\bin\Tools\Wix\Bitmaps\Up.ico" Name="Up.ico" Id="Up.ico" />
 
261
                                                                                </Component>
 
262
                                                                        </Directory>
 
263
                                                                        <Component Guid="6D18FAA0-440D-47FA-B9C1-790A00ADF96D" Id="DariceCub" DiskId="1">
 
264
                                                                                <File Source="..\..\bin\Tools\Wix\darice.cub" Name="darice.cub" Id="darice.cub" KeyPath="yes" />
 
265
                                                                        </Component>
 
266
                                                                        <Component Guid="3EF5C4FB-8CAC-4E26-A8F1-1153587AA2BA" Id="HeatExe" DiskId="1">
 
267
                                                                                <File Source="..\..\bin\Tools\Wix\heat.exe.config" Name="heat.exe.config" Id="heat.exe.config" />
 
268
                                                                                <File Source="..\..\bin\Tools\Wix\heat.exe" Name="heat.exe" Id="heat.exe" KeyPath="yes" />
 
269
                                                                        </Component>
 
270
                                                                        <Component Guid="14177C96-097D-46EA-BCCF-8CC536E4A590" Id="MeltExe" DiskId="1">
 
271
                                                                                <File Source="..\..\bin\Tools\Wix\melt.exe.config" Name="melt.exe.config" Id="melt.exe.config" />
 
272
                                                                                <File Source="..\..\bin\Tools\Wix\melt.exe" Name="melt.exe" Id="melt.exe" KeyPath="yes" />
 
273
                                                                        </Component>
 
274
                                                                        <Component Guid="D6D6FFD1-A604-46A1-8FBD-379FCF50D3A0" Id="MergeModCub" DiskId="1">
 
275
                                                                                <File Source="..\..\bin\Tools\Wix\mergemod.cub" Name="mergemod.cub" Id="mergemod.cub" KeyPath="yes" />
 
276
                                                                        </Component>
 
277
                                                                        <Component Guid="3BD54C3E-6967-4E90-BDF0-0EA005BC39D4" Id="MSPatchCDll" DiskId="1">
 
278
                                                                                <File Source="..\..\bin\Tools\Wix\mspatchc.dll" Name="mspatchc.dll" Id="mspatchc.dll" KeyPath="yes" />
 
279
                                                                        </Component>
 
280
                                                                        <Component Guid="697F78FC-BD77-46F0-9485-DABFBE5DDAB0" Id="PyroExe" DiskId="1">
 
281
                                                                                <File Source="..\..\bin\Tools\Wix\pyro.exe.config" Name="pyro.exe.config" Id="pyro.exe.config" />
 
282
                                                                                <File Source="..\..\bin\Tools\Wix\pyro.exe" Name="pyro.exe" Id="pyro.exe" KeyPath="yes" />
 
283
                                                                        </Component>
 
284
                                                                        <Component Guid="A9351908-10B6-46BD-AB7E-40C9A303E8C1" Id="SmokeExe" KeyPath="yes">
 
285
                                                                                <File Source="..\..\bin\Tools\Wix\smoke.exe.config" Name="smoke.exe.config" Id="smoke.exe.config" />
 
286
                                                                                <File Source="..\..\bin\Tools\Wix\smoke.exe" Name="smoke.exe" Id="smoke.exe" />
 
287
                                                                        </Component>
 
288
                                                                        <Component Guid="11B93603-DEFB-48E3-81E7-500DC72C5B00" Id="TorchExe" DiskId="1">
 
289
                                                                                <File Source="..\..\bin\Tools\Wix\torch.exe.config" Name="torch.exe.config" Id="torch.exe.config" />
 
290
                                                                                <File Source="..\..\bin\Tools\Wix\torch.exe" Name="torch.exe" Id="torch.exe" KeyPath="yes" />
 
291
                                                                        </Component>
 
292
                                                                        <Component Guid="BCB44004-A7A2-4734-BF99-A078049A4258" Id="WConsoleDll" DiskId="1">
 
293
                                                                                <File Source="..\..\bin\Tools\Wix\wconsole.dll" Name="wconsole.dll" Id="wconsole.dll" KeyPath="yes" />
 
294
                                                                        </Component>
 
295
                                                                        <Component Guid="2A50A069-7476-4DE1-A947-B1622F39D2F2" Id="WuiDll" DiskId="1">
 
296
                                                                                <File Source="..\..\bin\Tools\Wix\wui.dll" Name="wui.dll" Id="wui.dll" KeyPath="yes" />
 
297
                                                                        </Component>
 
298
                                                                        <Component Guid="EBF81D57-1F21-41DF-8C4F-DBAC919BA99D" Id="WixDifxAppExtensionDll" DiskId="1">
 
299
                                                                                <File Source="..\..\bin\Tools\Wix\WixDifxAppExtension.dll" Name="WixDifxAppExtension.dll" Id="WixDifxAppExtension.dll" KeyPath="yes" />
 
300
                                                                        </Component>
 
301
                                                                        <Component Guid="7EFD65B5-BD14-4C38-B089-690FBBC7F2C7" Id="WixIIsExtensionDll" DiskId="1">
 
302
                                                                                <File Source="..\..\bin\Tools\Wix\WixIIsExtension.dll" Name="WixIIsExtension.dll" Id="WixIIsExtension.dll" KeyPath="yes" />
 
303
                                                                        </Component>
 
304
                                                                        <Component Guid="AE8B607B-A4DF-4282-A013-8588D884144F" Id="WixPSExtensionDll" DiskId="1">
 
305
                                                                                <File Source="..\..\bin\Tools\Wix\WixPSExtension.dll" Name="WixPSExtension.dll" Id="WixPSExtension.dll" KeyPath="yes" />
 
306
                                                                        </Component>
 
307
                                                                        <Component Guid="57293693-36D9-4817-A7B5-3AA0B14082DA" Id="WixSqlExtensionDll" DiskId="1">
 
308
                                                                                <File Source="..\..\bin\Tools\Wix\WixSqlExtension.dll" Name="WixSqlExtension.dll" Id="WixSqlExtension.dll" KeyPath="yes" />
 
309
                                                                        </Component>
 
310
                                                                        <Component Guid="D7DF419E-A022-488C-BCFB-5C52F1406C06" Id="WixUIExtensionDll" DiskId="1">
 
311
                                                                                <File Source="..\..\bin\Tools\Wix\WixUIExtension.dll" Name="WixUIExtension.dll" Id="WixUIExtension.dll" KeyPath="yes" />
 
312
                                                                        </Component>
 
313
                                                                        <Component Guid="9F85F147-14CD-4940-A166-292A550454E2" Id="WixUtilExtensionDll" DiskId="1">
 
314
                                                                                <File Source="..\..\bin\Tools\Wix\WixUtilExtension.dll" Name="WixUtilExtension.dll" Id="WixUtilExtension.dll" KeyPath="yes" />
 
315
                                                                        </Component>
 
316
                                                                        <Component Guid="8F2C8A8F-876B-4493-862E-23BE544F3E70" Id="WixComPlusExtensionDll" DiskId="1">
 
317
                                                                                <File Source="..\..\bin\Tools\Wix\WixComPlusExtension.dll" Name="WixComPlusExtension.dll" Id="WixComPlusExtension.dll" KeyPath="yes" />
 
318
                                                                        </Component>
 
319
                                                                        <Component Guid="14C6D703-D1E8-4D3C-8BAB-A78130818589" Id="WixMsmqExtensionDll" DiskId="1">
 
320
                                                                                <File Source="..\..\bin\Tools\Wix\WixMsmqExtension.dll" Name="WixMsmqExtension.dll" Id="WixMsmqExtension.dll" KeyPath="yes" />
 
321
                                                                        </Component>
 
322
                                                                        <Component Guid="43F0C244-A993-4ECE-985C-C89A727123DA" Id="WixDirectXExtensionDll" DiskId="1">
 
323
                                                                                <File Source="..\..\bin\Tools\Wix\WixDirectXExtension.dll" Name="WixDirectXExtension.dll" Id="WixDirectXExtension.dll" KeyPath="yes" />
 
324
                                                                        </Component>
 
325
                                                                        <Component Guid="169DE6D0-F8F4-47EF-803C-205E7991674E" Id="WixFirewallExtensionDll" DiskId="1">
 
326
                                                                                <File Source="..\..\bin\Tools\Wix\WixFirewallExtension.dll" Name="WixFirewallExtension.dll" Id="WixFirewallExtension.dll" KeyPath="yes" />
 
327
                                                                        </Component>
 
328
                                                                        <Component Guid="A49F5086-079E-4F5D-AD48-81DD1A7CF0BA" Id="WixGamingExtensionDll" DiskId="1">
 
329
                                                                                <File Source="..\..\bin\Tools\Wix\WixGamingExtension.dll" Name="WixGamingExtension.dll" Id="WixGamingExtension.dll" KeyPath="yes" />
 
330
                                                                        </Component>
 
331
                                                                        <Component Guid="EA637AA9-E615-4AC9-A599-600135950415" Id="Difxapp_x64Wixlib" DiskId="1">
 
332
                                                                                <File Source="..\..\bin\Tools\Wix\difxapp_x64.wixlib" Name="difxapp_x64.wixlib" Id="difxapp_x64.wixlib" KeyPath="yes" />
 
333
                                                                        </Component>
 
334
                                                                        <Component Guid="686E31B0-4BE9-4AA2-8C04-D17BAF820A86" Id="Difxapp_x86Wixlib" DiskId="1">
 
335
                                                                                <File Source="..\..\bin\Tools\Wix\difxapp_x86.wixlib" Name="difxapp_x86.wixlib" Id="difxapp_x86.wixlib" KeyPath="yes" />
 
336
                                                                        </Component>
 
337
                                                                        <Component Id="Difxapp_ia64Wixlib" Guid="D125EF4D-DACC-47BB-8B1E-8CAE67D7B8EA" DiskId="1">
 
338
                                                                                <File Id="difxapp_ia64.wixlib" Name="difxapp_ia64.wixlib" Source="..\..\bin\Tools\Wix\difxapp_ia64.wixlib" KeyPath="yes" />
 
339
                                                                        </Component>
 
340
                                                                        <Component Id="InsigniaExe" Guid="C69A068B-F60C-4ED1-A731-6B266C9CE852" DiskId="1">
 
341
                                                                                <File Id="insignia.exe" Name="insignia.exe" Source="..\..\bin\Tools\Wix\insignia.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="insignia.exe" AssemblyManifest="insignia.exe" />
 
342
                                                                        </Component>
 
343
                                                                        <Component Id="InsigniaExeConfig" Guid="69BC0DB5-A147-4C55-97DD-7C71DD0B8158" DiskId="1">
 
344
                                                                                <File Id="insignia.exe.config" Name="insignia.exe.config" Source="..\..\bin\Tools\Wix\insignia.exe.config" KeyPath="yes" />
 
345
                                                                        </Component>
 
346
                                                                        <Component Id="LuxExe" Guid="06D047A2-5AF0-4B8B-9181-6E9A76BE4530" DiskId="1">
 
347
                                                                                <File Id="lux.exe" Name="lux.exe" Source="..\..\bin\Tools\Wix\lux.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="lux.exe" AssemblyManifest="lux.exe" />
 
348
                                                                        </Component>
 
349
                                                                        <Component Id="LuxExeConfig" Guid="20F2D2E5-0908-41B0-8FD5-70FA530B678A" DiskId="1">
 
350
                                                                                <File Id="lux.exe.config" Name="lux.exe.config" Source="..\..\bin\Tools\Wix\lux.exe.config" KeyPath="yes" />
 
351
                                                                        </Component>
 
352
                                                                        <Component Id="LuxTargets" Guid="2A1C1410-82A4-4A37-A7AB-421FAAC377D1" DiskId="1">
 
353
                                                                                <File Id="lux.targets" Name="lux.targets" Source="..\..\bin\Tools\Wix\lux.targets" KeyPath="yes" />
 
354
                                                                        </Component>
 
355
                                                                        <Component Id="LuxTasksDll" Guid="6CE43C66-3596-4C6D-9296-CBFDF62DB06E" DiskId="1">
 
356
                                                                                <File Id="LuxTasks.dll" Name="LuxTasks.dll" Source="..\..\bin\Tools\Wix\LuxTasks.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="LuxTasks.dll" AssemblyManifest="LuxTasks.dll" />
 
357
                                                                        </Component>
 
358
                                                                        <Component Id="MicrosoftDeploymentWindowsInstallerDll" Guid="3EDECF4C-9057-4A5A-81AE-822D380D53C7" DiskId="1">
 
359
                                                                                <File Id="Microsoft.Deployment.WindowsInstaller.dll" Name="Microsoft.Deployment.WindowsInstaller.dll" Source="..\..\bin\Tools\Wix\Microsoft.Deployment.WindowsInstaller.dll" KeyPath="yes" />
 
360
                                                                        </Component>
 
361
                                                                        <Component Id="NitExe" Guid="3C48B422-7827-47EE-92CD-8F03EAABE812" DiskId="1">
 
362
                                                                                <File Id="nit.exe" Name="nit.exe" Source="..\..\bin\Tools\Wix\nit.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="nit.exe" AssemblyManifest="nit.exe" />
 
363
                                                                        </Component>
 
364
                                                                        <Component Id="NitExeConfig" Guid="55C9BB7F-7AC2-476D-A1CC-5A12A4DEC242" DiskId="1">
 
365
                                                                                <File Id="nit.exe.config" Name="nit.exe.config" Source="..\..\bin\Tools\Wix\nit.exe.config" KeyPath="yes" />
 
366
                                                                        </Component>
 
367
                                                                        <Component Id="Wix200xTargets" Guid="C00D650D-AAB4-4EB6-82AE-EFF944921519" DiskId="1">
 
368
                                                                                <File Id="wix200x.targets" Name="wix200x.targets" Source="..\..\bin\Tools\Wix\wix200x.targets" KeyPath="yes" />
 
369
                                                                        </Component>
 
370
                                                                        <Component Id="Wix2010Targets" Guid="272EB1AD-F771-4661-94A8-936BEA072356" DiskId="1">
 
371
                                                                                <File Id="wix2010.targets" Name="wix2010.targets" Source="..\..\bin\Tools\Wix\wix2010.targets" KeyPath="yes" />
 
372
                                                                        </Component>
 
373
                                                                        <Component Id="WixLuxExtensionDll" Guid="D9C14B60-3E2E-48F1-A9AC-B41617639863" DiskId="1">
 
374
                                                                                <File Id="WixLuxExtension.dll" Name="WixLuxExtension.dll" Source="..\..\bin\Tools\Wix\WixLuxExtension.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="WixLuxExtension.dll" AssemblyManifest="WixLuxExtension.dll" />
 
375
                                                                        </Component>
 
376
                                                                </Directory>
 
377
                                                                <Directory Id="NUnitFolder" Name="NUnit">
 
378
                                                                        <Component Guid="108E9A75-72D2-40FA-B65C-EFB5ECADB245" Id="NUnitConsoleFiles" DiskId="1">
 
379
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console.exe" Id="nunit_console.exe" Name="nunit-console.exe" Assembly=".net" AssemblyApplication="nunit_console.exe" AssemblyManifest="nunit_console.exe" KeyPath="yes" />
 
380
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console.exe.config" Id="nunit_console.exe.config" Name="nunit-console.exe.config" />
 
381
                                                                        </Component>
 
382
                                                                        <Component Guid="AB89A052-2D0A-426E-B755-6FA1A9C1C64F" Id="NUnitFrameworkDll" DiskId="1">
 
383
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit.framework.dll" Id="nunit.framework.dll" Name="nunit.framework.dll" />
 
384
                                                                        </Component>
 
385
                                                                        <Component Guid="C996D268-4471-4CBF-9015-43357863360A" Id="NUnitConsoleX86Files" DiskId="1">
 
386
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console-x86.exe" Name="nunit-console-x86.exe" Id="nunit_console_x86.exe" Assembly=".net" KeyPath="yes" AssemblyApplication="nunit_console_x86.exe" AssemblyManifest="nunit_console_x86.exe" />
 
387
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console-x86.exe.config" Name="nunit-console-x86.exe.config" Id="nunit_console_x86.exe.config" />
 
388
                                                                        </Component>
 
389
                                                                        <Directory Id="lib" Name="lib">
 
390
                                                                                <Component Guid="7A72406E-0E83-4CE7-BB3A-2F3CC2D6F91B" Id="NUnitConsoleRunnerDll" DiskId="1">
 
391
                                                                                        <File Source="..\..\bin\Tools\NUnit\lib\nunit-console-runner.dll" Name="nunit-console-runner.dll" Id="lib.nunit_console_runner.dll" KeyPath="yes" />
 
392
                                                                                </Component>
 
393
                                                                                <Component Guid="81A713E3-4905-4006-8510-3E1F3AB9AD13" Id="NUnitCoreDll" DiskId="1">
 
394
                                                                                        <File Source="..\..\bin\Tools\NUnit\lib\nunit.core.dll" Name="nunit.core.dll" Id="lib.nunit.core.dll" KeyPath="yes" />
 
395
                                                                                </Component>
 
396
                                                                                <Component Guid="8E89CF2B-A866-4488-91F9-9079565FD9AE" Id="NUnitCoreInterfacesDll" DiskId="1">
 
397
                                                                                        <File Source="..\..\bin\Tools\NUnit\lib\nunit.core.interfaces.dll" Name="nunit.core.interfaces.dll" Id="lib.nunit.core.interfaces.dll" KeyPath="yes" />
 
398
                                                                                </Component>
 
399
                                                                                <Component Guid="F9388116-85AE-4BF0-8CF6-0E6B5C3DD15F" Id="NUnitUtilDll" DiskId="1">
 
400
                                                                                        <File Source="..\..\bin\Tools\NUnit\lib\nunit.util.dll" Name="nunit.util.dll" Id="lib.nunit.util.dll" KeyPath="yes" />
 
401
                                                                                </Component>
 
402
                                                                        </Directory>
 
403
                                                                        <Component Guid="FAEE921D-6A1D-48AD-A1AF-7AB39548D1F9" Id="NUnitConsoleDotnet2Files" DiskId="1">
 
404
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2.exe" Name="nunit-console-dotnet2.exe" Id="nunit_console_dotnet2.exe" KeyPath="yes" />
 
405
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2.exe.config" Name="nunit-console-dotnet2.exe.config" Id="nunit_console_dotnet2.exe.config" />
 
406
                                                                        </Component>
 
407
                                                                        <Component Guid="6ACE3D5E-9042-4898-BD43-BD39E8DCB879" Id="NUnitConsoleDotnet2X86Files" DiskId="1">
 
408
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2-x86.exe" Name="nunit-console-dotnet2-x86.exe" Id="nunit_console_dotnet2_x86.exe" KeyPath="yes" />
 
409
                                                                                <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2-x86.exe.config" Name="nunit-console-dotnet2-x86.exe.config" Id="nunit_console_dotnet2_x86.exe.config" />
 
410
                                                                        </Component>
 
411
                                                                </Directory>
 
412
                                                                <Directory Id="PartCover" Name="PartCover">
 
413
                                                                        <Component Guid="CD9AB556-51BD-4DB2-9AC5-C047022991DD" Id="InteropPartCoverDll" DiskId="1">
 
414
                                                                                <File Source="..\..\bin\Tools\PartCover\Interop.PartCover.dll" Id="Interop.PartCover.dll" Name="Interop.PartCover.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Interop.PartCover.dll" AssemblyManifest="Interop.PartCover.dll" />
 
415
                                                                        </Component>
 
416
                                                                        <Component Id="PartCoverDll" Guid="BBD31A1B-36C3-4550-91BF-1C551A46359C" DiskId="1">
 
417
                                                                                <File Id="PartCover.dll" Name="PartCover.dll" Source="..\..\bin\Tools\PartCover\PartCover.dll" KeyPath="yes" />
 
418
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryAppIdGuid" Root="HKCR" Type="string" Key="AppId\7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" Value="PartCoverCorDriver" />
 
419
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryAppIdDriverDll" Root="HKCR" Type="string" Key="AppId\PartCoverCorDriver.DLL" Name="AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" />
 
420
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuid" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}" Value="CorProfiler Object" />
 
421
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidAppId" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}" Name="AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" />
 
422
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidInProcServer" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\InProcServer32" Value="[#PartCover.dll]" />
 
423
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidInProcServerThreadingModel" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\InProcServer32" Name="ThreadingModel" Value="both" />
 
424
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidProgID" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\ProgID" Value="PartCover.CorDriver.CorProfiler.4" />
 
425
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidProgrammable" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\Programmable" Value="" />
 
426
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidTypeLib" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\TypeLib" Value="{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}" />
 
427
                                                                                <RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidVersionIndependentProgID" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\VersionIndependentProgID" Value="PartCover.CorDriver.CorProfiler" />
 
428
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuid" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}" Value="PartCoverConnector2 Object" />
 
429
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidAppId" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" />
 
430
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidInprocServer32" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\InprocServer32" Value="[#PartCover.dll]" />
 
431
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidInprocServer32ThreadingModel" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\InprocServer32" Name="ThreadingModel" Value="both" />
 
432
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidProgId" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\ProgId" Value="PartCover.CorDriver.Connector.3" />
 
433
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidProgrammable" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\Programmable" Value="" />
 
434
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidTypeLib" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\TypeLib" Value="{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}" />
 
435
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidVersionIndependentProgID" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\VersionIndependentProgID" Value="PartCover.CorDriver.Connector" />
 
436
                                                                                <RegistryValue Id="PartCoverCorConnectorRegistry" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector" Value="PartCoverConnector2 Object" />
 
437
                                                                                <RegistryValue Id="PartCoverCorConnectorRegistryClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector\CLSID" Value="{FB20430E-CDC9-45D7-8453-272268002E08}" />
 
438
                                                                                <RegistryValue Id="PartCoverCorConnectorRegistryCurVer" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector\CurVer" Value="PartCover.CorDriver.Connector.3" />
 
439
                                                                                <RegistryValue Id="PartCoverCorConnectorRegistry3" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector.3" Value="PartCoverConnector2 Object" />
 
440
                                                                                <RegistryValue Id="PartCoverCorConnectorRegistry3ClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector.3\CLSID" Value="{FB20430E-CDC9-45D7-8453-272268002E08}" />
 
441
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryName" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler" Value="CorProfiler Object" />
 
442
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryNameClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler\CLSID" Value="{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}" />
 
443
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistryNameCurVer" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler\CurVer" Value="PartCover.CorDriver.CorProfiler.4" />
 
444
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistry2" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler.4" Value="CorProfiler Object" />
 
445
                                                                                <RegistryValue Id="PartCoverCorProfilerRegistry2ClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler.4\CLSID" Value="{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}" />
 
446
                                                                                <RegistryValue Id="PartCoverTypeLibRegistryGuid" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\4.0" Value="PartCover module" />
 
447
                                                                                <RegistryValue Id="PartCoverTypeLibRegistryGuidWin32" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\4.0\0\win32" Value="[#PartCover.dll]" />
 
448
                                                                                <RegistryValue Id="PartCoverTypeLibRegistryGuidFlags" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\4.0\FLAGS" Value="0" />
 
449
                                                                                <RegistryValue Id="PartCoverTypeLibRegistryGuidHelp" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\4.0\HELPDIR" Value="" />
 
450
                                                                        </Component>
 
451
                                                                        <Component Guid="429867BD-2DC0-4934-BED7-70A17978A57C" Id="PartCoverExe" DiskId="1">
 
452
                                                                                <File Source="..\..\bin\Tools\PartCover\PartCover.exe" Id="PartCover.exe" Name="PartCover.exe" Assembly=".net" KeyPath="yes" AssemblyApplication="PartCover.exe" AssemblyManifest="PartCover.exe" />
 
453
                                                                        </Component>
 
454
                                                                        <Component Guid="1C2BDE86-9B7C-4DA3-BFC2-AD92EB27890B" Id="PartCoverExeConfig" DiskId="1">
 
455
                                                                                <File Source="..\..\bin\Tools\PartCover\PartCover.exe.config" Id="PartCover.exe.config" Name="PartCover.exe.config" KeyPath="yes" />
 
456
                                                                        </Component>
 
457
                                                                        <Component Guid="9C5C2A46-D501-495C-A72A-977B0C67217D" Id="PartCoverFrameworkDll" DiskId="1">
 
458
                                                                                <File Source="..\..\bin\Tools\PartCover\PartCover.Framework.dll" Id="PartCover.Framework.dll" Name="PartCover.Framework.dll" KeyPath="yes" />
 
459
                                                                        </Component>
 
460
                                                                </Directory>
 
461
                                                        </Directory>
 
462
                                                        <Component Guid="2EC34D8A-CF14-4E1F-A512-9A596A1C256D" Id="ICSharpCodeCoreWinFormsDll" DiskId="1">
 
463
                                                                <File Source="..\..\bin\ICSharpCode.Core.WinForms.dll" Name="ICSharpCode.Core.WinForms.dll" Id="ICSharpCode.Core.WinForms.dll" KeyPath="yes" />
 
464
                                                        </Component>
 
465
                                                        <Component Guid="A124FA3C-F094-4FC2-88BA-D253DB319DC2" Id="AvalonDockDll" DiskId="1">
 
466
                                                                <File Source="..\..\bin\AvalonDock.dll" Name="AvalonDock.dll" Id="AvalonDock.dll" KeyPath="yes" />
 
467
                                                        </Component>
 
468
                                                        <Component Guid="C54C86B8-EB49-473F-B7BD-639B71226E9E" Id="ICSharpCodeCorePresentationDll" DiskId="1">
 
469
                                                                <File Source="..\..\bin\ICSharpCode.Core.Presentation.dll" Name="ICSharpCode.Core.Presentation.dll" Id="ICSharpCode.Core.Presentation.dll" KeyPath="yes" />
 
470
                                                        </Component>
 
471
                                                        <Component Guid="7ACA96F6-7075-405A-B85D-D5930E984B19" Id="ICSharpCodeAvalonEditDll" DiskId="1">
 
472
                                                                <File Source="..\..\bin\ICSharpCode.AvalonEdit.dll" Name="ICSharpCode.AvalonEdit.dll" Id="ICSharpCode.AvalonEdit.dll" KeyPath="yes" />
 
473
                                                        </Component>
 
474
                                                        <Component Guid="84FB3C82-23BD-11DE-8F18-C06F55D89593" Id="ICSharpCodeTreeViewDll" DiskId="1">
 
475
                                                                <File Source="..\..\bin\ICSharpCode.TreeView.dll" Name="ICSharpCode.TreeView.dll" Id="ICSharpCode.TreeView.dll" KeyPath="yes" />
 
476
                                                        </Component>
 
477
                                                        <Component Id="ICSharpCodeSharpDevelopBuildWorker35Exe" Guid="5065CD28-3B76-4AB9-B334-1DC1A91AA172" DiskId="1">
 
478
                                                                <File Id="ICSharpCode.SharpDevelop.BuildWorker35.exe" Name="ICSharpCode.SharpDevelop.BuildWorker35.exe" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker35.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.BuildWorker35.exe" AssemblyManifest="ICSharpCode.SharpDevelop.BuildWorker35.exe">
 
479
                                                                        <netfx:NativeImage Id="BuildWorker35NGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
480
                                                                </File>
 
481
                                                                <File Id="ICSharpCode.SharpDevelop.BuildWorker35.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker35.exe.config" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker35.exe.config" />
 
482
                                                        </Component>
 
483
                                                        <Component Id="ICSharpCodeSharpDevelopBuildWorker40Exe" Guid="25731457-7DB4-40F6-8AA9-21AF7F9C04DD" DiskId="1">
 
484
                                                                <File Id="ICSharpCode.SharpDevelop.BuildWorker40.exe" Name="ICSharpCode.SharpDevelop.BuildWorker40.exe" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker40.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.BuildWorker40.exe" AssemblyManifest="ICSharpCode.SharpDevelop.BuildWorker40.exe">
 
485
                                                                        <netfx:NativeImage Id="BuildWorker40NGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
486
                                                                </File>
 
487
                                                                <File Id="ICSharpCode.SharpDevelop.BuildWorker40.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker40.exe.config" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker40.exe.config" />
 
488
                                                        </Component>
 
489
                                                        <Component Id="ICSharpCodeScriptingDll" Guid="62B44EFA-CCB4-4B73-B455-AE3C72B8121F" DiskId="1">
 
490
                                                                <File Id="ICSharpCode.Scripting.dll" Name="ICSharpCode.Scripting.dll" Source="..\..\bin\ICSharpCode.Scripting.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.Scripting.dll" AssemblyManifest="ICSharpCode.Scripting.dll" />
 
491
                                                        </Component>
 
492
                                                </Directory>
 
493
                                                <Directory Id="DocFolder" Name="doc">
 
494
                                                        <Component Guid="9DCED5AC-B771-4A4F-B4FE-69867BF2EBDE" Id="SharpDevelopDocFiles" DiskId="1">
 
495
                                                                <File Source="..\..\doc\BuiltWithSharpDevelop.png" Id="BuiltWithSharpDevelop.png" Name="BuiltWithSharpDevelop.png" />
 
496
                                                                <File Source="..\..\doc\ChangeLog.html" Id="ChangeLog.html" Name="ChangeLog.html" />
 
497
                                                                <File Source="..\..\doc\copyright.txt" Id="copyright.txt" Name="copyright.txt" />
 
498
                                                                <File Source="..\..\doc\license.txt" Name="license.txt" Id="DocFolderLicense.txt" />
 
499
                                                                <File Source="..\..\doc\readme.rtf" Name="readme.rtf" Id="readme.rtf" />
 
500
                                                                <File Source="..\..\doc\SharpDevelopInfoResources.txt" Id="SharpDevelopInfoResources.txt" Name="SharpDevelopInfoResources.txt" />
 
501
                                                        </Component>
 
502
                                                        <Directory Id="TechNoteFolder" Name="technotes">
 
503
                                                                <Component Guid="167B7AF9-7267-4AD4-9C47-3373F0329840" Id="SharpDevelopTechNoteFiles" DiskId="1">
 
504
                                                                        <File Source="..\..\doc\technotes\Versioning.html" Id="Versioning.html" Name="Versioning.html" />
 
505
                                                                        <File Source="..\..\doc\technotes\AddInBuildingGuide.rtf" Id="AddInBuildingGuide.rtf" Name="AddInBuildingGuide.rtf" />
 
506
                                                                        <File Source="..\..\doc\technotes\AddInManager.rtf" Id="AddInManager.rtf" Name="AddInManager.rtf" />
 
507
                                                                        <File Source="..\..\doc\technotes\AddInTree.rtf" Id="AddInTree.rtf" Name="AddInTree.rtf" />
 
508
                                                                        <File Source="..\..\doc\technotes\CodingStyleGuide.rtf" Id="CodingStyleGuide.rtf" Name="CodingStyleGuide.rtf" />
 
509
                                                                        <File Source="..\..\doc\technotes\ConditionList.html" Id="ConditionList.html" Name="ConditionList.html" />
 
510
                                                                        <File Source="..\..\doc\technotes\DoozerList.html" Id="DoozerList.html" Name="DoozerList.html" />
 
511
                                                                        <File Source="..\..\doc\technotes\listing.css" Name="listing.css" Id="listing.css" />
 
512
                                                                        <File Source="..\..\doc\technotes\TechicalWritingMadeEasier.rtf" Id="TechicalWritingMadeEasier.rtf" Name="TechicalWritingMadeEasier.rtf" />
 
513
                                                                        <File Source="..\..\doc\technotes\TheFineArtOfCommenting.rtf" Id="TheFineArtOfCommenting.rtf" Name="TheFineArtOfCommenting.rtf" />
 
514
                                                                </Component>
 
515
                                                                <Component Guid="B5E6404F-E602-42AA-9C3A-996425AC3B40" Id="AddInWritingHelpWebsiteShortcut" DiskId="1">
 
516
                                                                        <File Id="AddInWritingHelp.url" Name="AddIn Writing Help.url" Source="..\..\doc\technotes\AddIn Writing Help.url" KeyPath="yes" />
 
517
                                                                </Component>
 
518
                                                        </Directory>
 
519
                                                </Directory>
 
520
                                                <Directory Id="DataFolder" Name="data">
 
521
                                                        <Directory Id="ConversionStyleSheetsFolder" Name="ConversionStyleSheets">
 
522
                                                                <Component Guid="EEC59BAB-23BE-4FD3-8788-4A6023A6B394" Id="ConversionStyleSheetFiles" DiskId="1">
 
523
                                                                        <File Source="..\..\data\ConversionStyleSheets\ShowXmlDocumentation.xsl" Id="ShowXmlDocumentation.xsl" Name="ShowXmlDocumentation.xsl" />
 
524
                                                                </Component>
 
525
                                                        </Directory>
 
526
                                                        <Directory Id="ModesFolder" Name="modes">
 
527
                                                                <Component Guid="A716BD06-421C-4379-B99F-3E7874C1FDC7" Id="SyntaxModesFiles" DiskId="1">
 
528
                                                                        <File Source="..\..\data\modes\C64CSharp.xshd" Id="C64CSharp.xshd" Name="C64CSharp.xshd" />
 
529
                                                                        <File Source="..\..\data\modes\CSharp-Mode-VSEnh.xshd" Id="CSharp_Mode_VSEnh.xshd" Name="CSharp-Mode-VSEnh.xshd" />
 
530
                                                                </Component>
 
531
                                                        </Directory>
 
532
                                                        <Directory Id="OptionsFolder" Name="options">
 
533
                                                                <Directory Id="TextLibFolder" Name="TextLib">
 
534
                                                                        <Component Guid="684834D7-0389-4A1B-92D9-AC43100EFD52" Id="TextLibOptionsFiles" DiskId="1">
 
535
                                                                                <File Source="..\..\data\options\TextLib\ASCIITable.xml" Id="ASCIITable.xml" Name="ASCIITable.xml" />
 
536
                                                                                <File Source="..\..\data\options\TextLib\CSharpDocumentationTags.xml" Id="CSharpDocumentationTags.xml" Name="CSharpDocumentationTags.xml" />
 
537
                                                                                <File Source="..\..\data\options\TextLib\Licenses.xml" Name="Licenses.xml" Id="Licenses.xml" />
 
538
                                                                                <File Source="..\..\data\options\TextLib\XSLT.xml" Name="XSLT.xml" Id="XSLT.xml" />
 
539
                                                                        </Component>
 
540
                                                                </Directory>
 
541
                                                                <Component Guid="997EB70B-D4CB-41E9-9F67-9F33362B3936" Id="OptionsFiles" DiskId="1">
 
542
                                                                        <File Source="..\..\data\options\SharpDevelopControlLibrary.sdcl" Id="SharpDevelopControlLibrary.sdcl" Name="SharpDevelopControlLibrary.sdcl" />
 
543
                                                                        <File Source="..\..\data\options\SharpDevelopProperties.xml" Id="SharpDevelopProperties.xml" Name="SharpDevelopProperties.xml" />
 
544
                                                                        <File Source="..\..\data\options\SharpDevelop-templates.xml" Id="SharpDevelop_templates.xml" Name="SharpDevelop-templates.xml" />
 
545
                                                                        <File Source="..\..\data\options\SharpDevelop-tools.xml" Id="SharpDevelop_tools.xml" Name="SharpDevelop-tools.xml" />
 
546
                                                                        <File Source="..\..\data\options\StandardHeader.xml" Id="StandardHeader.xml" Name="StandardHeader.xml" />
 
547
                                                                </Component>
 
548
                                                        </Directory>
 
549
                                                        <Directory Id="LayoutsFolder" Name="layouts">
 
550
                                                                <Component Guid="B982324C-D787-425E-BB2C-4EF4C983867D" Id="LayoutFiles" DiskId="1">
 
551
                                                                        <File Source="..\..\data\layouts\Plain.xml" Name="Plain.xml" Id="Plain.xml" />
 
552
                                                                        <File Source="..\..\data\layouts\Debug.xml" Name="Debug.xml" Id="Debug.xml" />
 
553
                                                                        <File Source="..\..\data\layouts\Default.xml" Name="Default.xml" Id="Default.xml" />
 
554
                                                                        <File Source="..\..\data\layouts\LayoutConfig.xml" Id="LayoutConfig.xml" Name="LayoutConfig.xml" />
 
555
                                                                </Component>
 
556
                                                        </Directory>
 
557
                                                        <Directory Id="ResourcesFolder" Name="resources">
 
558
                                                                <Directory Id="InstallerBitmapsFolder" Name="InstallerBitmaps">
 
559
                                                                        <Component Guid="9FA2E783-96A7-4D61-BF60-4D923AD34923" Id="InstallerBitmapFiles" DiskId="1">
 
560
                                                                                <File Source="..\..\data\resources\InstallerBitmaps\up.bmp" Name="up.bmp" Id="up.bmp" />
 
561
                                                                                <File Source="..\..\data\resources\InstallerBitmaps\default-banner.bmp" Id="default_banner.bmp" Name="default-banner.bmp" />
 
562
                                                                                <File Source="..\..\data\resources\InstallerBitmaps\default-dialog.bmp" Id="default_dialog.bmp" Name="default-dialog.bmp" />
 
563
                                                                                <File Source="..\..\data\resources\InstallerBitmaps\exclamic.bmp" Name="exclamic.bmp" Id="exclamic.bmp" />
 
564
                                                                                <File Source="..\..\data\resources\InstallerBitmaps\info.bmp" Name="info.bmp" Id="info.bmp" />
 
565
                                                                                <File Source="..\..\data\resources\InstallerBitmaps\new.bmp" Name="new.bmp" Id="new.bmp" />
 
566
                                                                        </Component>
 
567
                                                                </Directory>
 
568
                                                                <Directory Id="LanuagesFolder" Name="languages">
 
569
                                                                        <Component Guid="52CFA578-E494-48D1-9928-38C3F867C47D" Id="LanguageBitmapFiles" DiskId="1">
 
570
                                                                                <File Source="..\..\data\resources\languages\usa.png" Name="usa.png" Id="usa.png" />
 
571
                                                                                <File Source="..\..\data\resources\languages\Arabic.png" Name="Arabic.png" Id="Arabic.png" />
 
572
                                                                                <File Source="..\..\data\resources\languages\brazil.png" Name="brazil.png" Id="brazil.png" />
 
573
                                                                                <File Source="..\..\data\resources\languages\bulgaria.png" Name="bulgaria.png" Id="bulgaria.png" />
 
574
                                                                                <File Source="..\..\data\resources\languages\catalonia.png" Id="catalonia.png" Name="catalonia.png" />
 
575
                                                                                <File Source="..\..\data\resources\languages\chinalg.png" Name="chinalg.png" Id="chinalg.png" />
 
576
                                                                                <File Source="..\..\data\resources\languages\czech.png" Name="czech.png" Id="czech.png" />
 
577
                                                                                <File Source="..\..\data\resources\languages\denmark.png" Name="denmark.png" Id="denmark.png" />
 
578
                                                                                <File Source="..\..\data\resources\languages\england.png" Name="england.png" Id="england.png" />
 
579
                                                                                <File Source="..\..\data\resources\languages\finnish.png" Name="finnish.png" Id="finnish.png" />
 
580
                                                                                <File Source="..\..\data\resources\languages\france.png" Name="france.png" Id="france.png" />
 
581
                                                                                <File Source="..\..\data\resources\languages\germany.png" Name="germany.png" Id="germany.png" />
 
582
                                                                                <File Source="..\..\data\resources\languages\hungary.png" Name="hungary.png" Id="hungary.png" />
 
583
                                                                                <File Source="..\..\data\resources\languages\italy.png" Name="italy.png" Id="italy.png" />
 
584
                                                                                <File Source="..\..\data\resources\languages\japan.png" Name="japan.png" Id="japan.png" />
 
585
                                                                                <File Source="..\..\data\resources\languages\LanguageDefinition.xml" Id="LanguageDefinition.xml" Name="LanguageDefinition.xml" />
 
586
                                                                                <File Source="..\..\data\resources\languages\lithuania.png" Id="lithuania.png" Name="lithuania.png" />
 
587
                                                                                <File Source="..\..\data\resources\languages\mexico.png" Name="mexico.png" Id="mexico.png" />
 
588
                                                                                <File Source="..\..\data\resources\languages\netherlands.png" Id="netherlands.png" Name="netherlands.png" />
 
589
                                                                                <File Source="..\..\data\resources\languages\norway.png" Name="norway.png" Id="norway.png" />
 
590
                                                                                <File Source="..\..\data\resources\languages\poland.png" Name="poland.png" Id="poland.png" />
 
591
                                                                                <File Source="..\..\data\resources\languages\portugal.png" Name="portugal.png" Id="portugal.png" />
 
592
                                                                                <File Source="..\..\data\resources\languages\romania.png" Name="romania.png" Id="romania.png" />
 
593
                                                                                <File Source="..\..\data\resources\languages\russia.png" Name="russia.png" Id="russia.png" />
 
594
                                                                                <File Source="..\..\data\resources\languages\Serbia.png" Name="Serbia.png" Id="Serbia.png" />
 
595
                                                                                <File Source="..\..\data\resources\languages\slovenia.png" Name="slovenia.png" Id="slovenia.png" />
 
596
                                                                                <File Source="..\..\data\resources\languages\south_korea.png" Id="south_korea.png" Name="south_korea.png" />
 
597
                                                                                <File Source="..\..\data\resources\languages\spain.png" Name="spain.png" Id="spain.png" />
 
598
                                                                                <File Source="..\..\data\resources\languages\sweden.png" Name="sweden.png" Id="sweden.png" />
 
599
                                                                                <File Source="..\..\data\resources\languages\turkey.png" Name="turkey.png" Id="turkey.png" />
 
600
                                                                                <File Source="..\..\data\resources\languages\uk.png" Name="uk.png" Id="uk.png" />
 
601
                                                                        </Component>
 
602
                                                                </Directory>
 
603
                                                                <Component Guid="D8322576-2925-4F43-ACB0-05369DC5FC67" Id="StringResourceFiles" DiskId="1">
 
604
                                                                        <File Source="..\..\data\resources\StringResources.tr.resources" Id="StringResources.tr.resources" Name="StringResources.tr.resources" />
 
605
                                                                        <File Source="..\..\data\resources\StringResources.cz.resources" Id="StringResources.cz.resources" Name="StringResources.cz.resources" />
 
606
                                                                        <File Source="..\..\data\resources\StringResources.de.resources" Id="StringResources.de.resources" Name="StringResources.de.resources" />
 
607
                                                                        <File Source="..\..\data\resources\StringResources.es.resources" Id="StringResources.es.resources" Name="StringResources.es.resources" />
 
608
                                                                        <File Source="..\..\data\resources\StringResources.es-mx.resources" Id="StringResources.es_mx.resources" Name="StringResources.es-mx.resources" />
 
609
                                                                        <File Source="..\..\data\resources\StringResources.fr.resources" Id="StringResources.fr.resources" Name="StringResources.fr.resources" />
 
610
                                                                        <File Source="..\..\data\resources\StringResources.hu.resources" Id="StringResources.hu.resources" Name="StringResources.hu.resources" />
 
611
                                                                        <File Source="..\..\data\resources\StringResources.it.resources" Id="StringResources.it.resources" Name="StringResources.it.resources" />
 
612
                                                                        <File Source="..\..\data\resources\StringResources.kr.resources" Id="StringResources.kr.resources" Name="StringResources.kr.resources" />
 
613
                                                                        <File Source="..\..\data\resources\StringResources.nl.resources" Id="StringResources.nl.resources" Name="StringResources.nl.resources" />
 
614
                                                                        <File Source="..\..\data\resources\StringResources.no.resources" Id="StringResources.no.resources" Name="StringResources.no.resources" />
 
615
                                                                        <File Source="..\..\data\resources\StringResources.pl.resources" Id="StringResources.pl.resources" Name="StringResources.pl.resources" />
 
616
                                                                        <File Source="..\..\data\resources\StringResources.pt-br.resources" Id="StringResources.pt_br.resources" Name="StringResources.pt-br.resources" />
 
617
                                                                        <File Source="..\..\data\resources\StringResources.ro.resources" Id="StringResources.ro.resources" Name="StringResources.ro.resources" />
 
618
                                                                        <File Source="..\..\data\resources\StringResources.se.resources" Id="StringResources.se.resources" Name="StringResources.se.resources" />
 
619
                                                                        <File Id="StringResources.zh.resources" Name="StringResources.zh.resources" Source="..\..\data\resources\StringResources.zh.resources" />
 
620
                                                                        <File Id="StringResources.pt.resources" Name="StringResources.pt.resources" Source="..\..\data\resources\StringResources.pt.resources" />
 
621
                                                                        <File Id="StringResources.ru.resources" Name="StringResources.ru.resources" Source="..\..\data\resources\StringResources.ru.resources" />
 
622
                                                                </Component>
 
623
                                                        </Directory>
 
624
                                                        <Directory Id="SchemasFolder" Name="schemas">
 
625
                                                                <Component Guid="1A3F6439-5B5F-4F20-BE1E-EE8DCC874E13" Id="SchemaFiles" DiskId="1">
 
626
                                                                        <File Source="..\..\data\schemas\AddIn.xsd" Name="AddIn.xsd" Id="AddIn.xsd" />
 
627
                                                                        <File Source="..\..\data\schemas\appconfig.xsd" Id="appconfig.xsd" Name="appconfig.xsd" />
 
628
                                                                        <File Source="..\..\data\schemas\manifest.xsd" Name="manifest.xsd" Id="manifest.xsd" />
 
629
                                                                        <File Source="..\..\data\schemas\nant.xsd" Name="nant.xsd" Id="nant.xsd" />
 
630
                                                                        <File Source="..\..\data\schemas\readme.txt" Name="readme.txt" Id="readme.txt" />
 
631
                                                                        <File Source="..\..\data\schemas\W3C-License.html" Id="W3C_License.html" Name="W3C-License.html" />
 
632
                                                                        <File Source="..\..\data\schemas\wix.xsd" Name="wix.xsd" Id="Schemas.wix.xsd" />
 
633
                                                                        <File Source="..\..\data\schemas\wixloc.xsd" Name="wixloc.xsd" Id="Schemas.wixloc.xsd" />
 
634
                                                                        <File Source="..\..\data\schemas\XMLSchema.xsd" Id="XMLSchema.xsd" Name="XMLSchema.xsd" />
 
635
                                                                        <File Source="..\..\data\schemas\xslt.xsd" Name="xslt.xsd" Id="xslt.xsd" />
 
636
                                                                </Component>
 
637
                                                                <Component Guid="DDA8760D-3A80-4B99-A892-D31DE4C7656B" Id="WixDIfxAppSchema" DiskId="1">
 
638
                                                                        <File Source="..\..\data\schemas\difxapp.xsd" Name="difxapp.xsd" Id="schemas.difxapp.xsd" KeyPath="yes" />
 
639
                                                                </Component>
 
640
                                                                <Component Guid="D130268A-9AB7-4B85-BDA3-42F23D9739EE" Id="WixIisSchema" DiskId="1">
 
641
                                                                        <File Source="..\..\data\schemas\iis.xsd" Name="iis.xsd" Id="schemas.iis.xsd" KeyPath="yes" />
 
642
                                                                </Component>
 
643
                                                                <Component Guid="B3D95F66-6FBC-49E0-AB33-820DF40DF00D" Id="WixNetFxSchema" DiskId="1">
 
644
                                                                        <File Source="..\..\data\schemas\netfx.xsd" Name="netfx.xsd" Id="schemas.netfx.xsd" KeyPath="yes" />
 
645
                                                                </Component>
 
646
                                                                <Component Guid="BEF94C46-5EA3-4F9F-888C-57773CFE508B" Id="WixPSSchema" DiskId="1">
 
647
                                                                        <File Source="..\..\data\schemas\ps.xsd" Name="ps.xsd" Id="schemas.ps.xsd" KeyPath="yes" />
 
648
                                                                </Component>
 
649
                                                                <Component Guid="4347F699-3DD1-4DE5-824D-C3CF81DDD94E" Id="WixSqlSchema" DiskId="1">
 
650
                                                                        <File Source="..\..\data\schemas\sql.xsd" Name="sql.xsd" Id="schemas.sql.xsd" KeyPath="yes" />
 
651
                                                                </Component>
 
652
                                                                <Component Guid="59D8F1AC-5B89-416F-9D5C-38B5B1FE4DE1" Id="WixUtilSchema" DiskId="1">
 
653
                                                                        <File Source="..\..\data\schemas\util.xsd" Name="util.xsd" Id="schemas.util.xsd" KeyPath="yes" />
 
654
                                                                </Component>
 
655
                                                                <Component Guid="796AF8D7-5647-4E92-9DFD-4C55C578F994" Id="WixVSSchema" DiskId="1">
 
656
                                                                        <File Source="..\..\data\schemas\vs.xsd" Name="vs.xsd" Id="schemas.vs.xsd" KeyPath="yes" />
 
657
                                                                </Component>
 
658
                                                                <Component Guid="D79044D2-CAF6-4006-AF88-367FC97E86B6" Id="WixMSMQSchema" DiskId="1">
 
659
                                                                        <File Source="..\..\data\schemas\msmq.xsd" Name="msmq.xsd" Id="schemas.msmq.xsd" KeyPath="yes" />
 
660
                                                                </Component>
 
661
                                                                <Component Guid="C0901A8C-00A4-4F2C-9A46-96D50A687D52" Id="WixFirewallSchema" DiskId="1">
 
662
                                                                        <File Source="..\..\data\schemas\firewall.xsd" Name="firewall.xsd" Id="schemas.wix.firewall.xsd" KeyPath="yes" />
 
663
                                                                </Component>
 
664
                                                                <Component Guid="CA5C2E97-D332-4FA3-8782-50A3FC09FAC7" Id="WixGamingSchema" DiskId="1">
 
665
                                                                        <File Source="..\..\data\schemas\gaming.xsd" Name="gaming.xsd" Id="schemas.wix.gaming.xsd" KeyPath="yes" />
 
666
                                                                </Component>
 
667
                                                                <Component Id="NuGetNuspecSchema" Guid="D45BFB38-1F09-48C2-B5E1-F1B1F073E4D1" DiskId="1">
 
668
                                                                        <File Id="nuspec.xsd" Name="nuspec.xsd" Source="..\..\data\schemas\nuspec.xsd" KeyPath="yes" />
 
669
                                                                </Component>
 
670
                                                        </Directory>
 
671
                                                        <Directory Id="TemplatesFolder" Name="templates">
 
672
                                                                <Directory Id="FileTemplatesFolder" Name="file">
 
673
                                                                        <Directory Id="CSharpFileTemplatesFolder" Name="CSharp">
 
674
                                                                                <Component Guid="6F4016F3-AAE0-465F-893B-AE694EA309C2" Id="CSharpFileTemplates" DiskId="1">
 
675
                                                                                        <File Source="..\..\data\templates\file\CSharp\FileCategorySortOrder.xml" Id="CSharpFileCategorySortOrder.xml" Name="FileCategorySortOrder.xml" />
 
676
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Empty.xft" Id="CSharp.Empty.xft" Name="CSharp.Empty.xft" />
 
677
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.EmptyClass.xft" Id="CSharp.EmptyClass.xft" Name="CSharp.EmptyClass.xft" />
 
678
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Exception.xft" Id="CSharp.Exception.xft" Name="CSharp.Exception.xft" />
 
679
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Forms.Form.xft" Id="CSharp.Forms.Form.xft" Name="CSharp.Forms.Form.xft" />
 
680
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Forms.UserControl.xft" Id="CSharp.Forms.UserControl.xft" Name="CSharp.Forms.UserControl.xft" />
 
681
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Interface.xft" Id="CSharp.Interface.xft" Name="CSharp.Interface.xft" />
 
682
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Patterns.Singleton.xft" Id="CSharp.Patterns.Singleton.xft" Name="CSharp.Patterns.Singleton.xft" />
 
683
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.UnitTest.xft" Id="CSharp.UnitTest.xft" Name="CSharp.UnitTest.xft" />
 
684
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebControl.xft" Id="CSharp.Web.WebControl.xft" Name="CSharp.Web.WebControl.xft" />
 
685
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebForm.xft" Id="CSharp.Web.WebForm.xft" Name="CSharp.Web.WebForm.xft" />
 
686
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebService.xft" Id="CSharp.Web.WebService.xft" Name="CSharp.Web.WebService.xft" />
 
687
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebHandler.xft" Id="CSharp.Web.WebHandler.xft" Name="CSharp.Web.WebHandler.xft" />
 
688
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.WPFFlowDocument.xft" Id="CSharp.WPFFlowDocument.xft" Name="CSharp.WPFFlowDocument.xft" />
 
689
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.WPFPage.xft" Id="CSharp.WPFPage.xft" Name="CSharp.WPFPage.xft" />
 
690
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.WPFPageFunction.xft" Id="CSharp.WPFPageFunction.xft" Name="CSharp.WPFPageFunction.xft" />
 
691
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.WPFResourceDictionary.xft" Id="CSharp.WPFResourceDictionary.xft" Name="CSharp.WPFResourceDictionary.xft" />
 
692
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.WPFUserControl.xft" Id="CSharp.WPFUserControl.xft" Name="CSharp.WPFUserControl.xft" />
 
693
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.WPFWindow.xft" Id="CSharp.WPFWindow.xft" Name="CSharp.WPFWindow.xft" />
 
694
                                                                                </Component>
 
695
                                                                                <Component Guid="16055582-32EE-4418-A06B-488AC5EC79E4" Id="CSharpStructTemplate" DiskId="1">
 
696
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.Struct.xft" Id="CSharp.Struct.xft" Name="CSharp.Struct.xft" />
 
697
                                                                                </Component>
 
698
                                                                                <Component Guid="3ffcfcc0-6f9b-11db-9fe1-0800200c9a66" Id="CSharpConfigurationFileTemplates" DiskId="1">
 
699
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationElement.xft" Id="CSharp.ConfigurationElement.xft" Name="CSharp.ConfigurationElement.xft" />
 
700
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationElementCollection.xft" Id="CSharp.ConfigurationElementCollection.xft" Name="CSharp.ConfigurationElementCollection.xft" />
 
701
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationSection.xft" Id="CSharp.ConfigurationSection.xft" Name="CSharp.ConfigurationSection.xft" />
 
702
                                                                                        <File Source="..\..\data\templates\file\CSharp\ConfigurationElement.cs" Id="ConfigurationElement.cs" Name="ConfigurationElement.cs" />
 
703
                                                                                        <File Source="..\..\data\templates\file\CSharp\ConfigurationElementCollection.cs" Id="ConfigurationElementCollection.cs" Name="ConfigurationElementCollection.cs" />
 
704
                                                                                        <File Source="..\..\data\templates\file\CSharp\ConfigurationSection.cs" Id="ConfigurationSection.cs" Name="ConfigurationSection.cs" />
 
705
                                                                                </Component>
 
706
                                                                                <Component Guid="C138E7CD-608E-4B51-8C43-1D716A6DDE70" Id="CSharpRecentFilesCollectionTemplate" DiskId="1">
 
707
                                                                                        <File Source="..\..\data\templates\file\CSharp\CSharp.RecentFilesCollection.xft" Name="CSharp.RecentFilesCollection.xft" Id="CSharp.RecentFilesCollection.xft" KeyPath="yes" />
 
708
                                                                                </Component>
 
709
                                                                                <Component Guid="C6B92F2F-CE69-4179-BF44-F81E21CBC207" Id="CSharpRecentFilesCollectionTemplateRecentFileElementClass">
 
710
                                                                                        <File Source="..\..\data\templates\file\CSharp\RecentFileElement.cs" Name="RecentFileElement.cs" Id="RecentFileElement.cs" KeyPath="yes" />
 
711
                                                                                </Component>
 
712
                                                                                <Component Guid="47C2A81B-8BC1-4762-BE7F-8989E8DE0703" Id="CSharpRecentFilesCollectionTemplateRecentFilesCollectionClass" DiskId="1">
 
713
                                                                                        <File Source="..\..\data\templates\file\CSharp\RecentFilesCollection.cs" Name="RecentFilesCollection.cs" Id="RecentFilesCollection.cs" KeyPath="yes" />
 
714
                                                                                </Component>
 
715
                                                                                <Component Id="CSharpMvcControllerFileTemplate" Guid="93AF3CAF-FA60-4765-9D24-415535A7F1F2" DiskId="1">
 
716
                                                                                        <File Id="CSharp.Mvc.Controller.xft" Name="CSharp.Mvc.Controller.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.Controller.xft" KeyPath="yes" />
 
717
                                                                                </Component>
 
718
                                                                                <Component Id="CSharpMvcViewContentPageFileTemplate" Guid="04C2BEF8-DB03-4D56-9176-E85529DB6789" DiskId="1">
 
719
                                                                                        <File Id="CSharp.Mvc.ViewContentPage.xft" Name="CSharp.Mvc.ViewContentPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewContentPage.xft" KeyPath="yes" />
 
720
                                                                                </Component>
 
721
                                                                                <Component Id="CSharpMvcViewMasterPageFileTemplate" Guid="1482F786-8437-4402-8798-D0EF2664FCB4" DiskId="1">
 
722
                                                                                        <File Id="CSharp.Mvc.ViewMasterPage.xft" Name="CSharp.Mvc.ViewMasterPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewMasterPage.xft" KeyPath="yes" />
 
723
                                                                                </Component>
 
724
                                                                                <Component Id="CSharpMvcViewPageFileTemplate" Guid="6C77F3F2-AF84-4927-BD9C-1995D8F30559" DiskId="1">
 
725
                                                                                        <File Id="CSharp.Mvc.ViewPage.xft" Name="CSharp.Mvc.ViewPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewPage.xft" KeyPath="yes" />
 
726
                                                                                </Component>
 
727
                                                                                <Component Id="CSharpMvcViewUserControlFileTemplate" Guid="FF8B0A8A-6C11-471E-AAAC-351D8D762973" DiskId="1">
 
728
                                                                                        <File Id="CSharp.Mvc.ViewUserControl.xft" Name="CSharp.Mvc.ViewUserControl.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewUserControl.xft" KeyPath="yes" />
 
729
                                                                                </Component>
 
730
                                                                        </Directory>
 
731
                                                                        <Directory Id="MiscFileTemplatesFolder" Name="Misc">
 
732
                                                                                <Component Guid="F47EE9EB-321F-4D98-A373-BFE2C2D801D0" Id="EmptyHTMLFileTemplate" DiskId="1">
 
733
                                                                                        <File Source="..\..\data\templates\file\Misc\EmptyHTMLFile.xft" Id="EmptyHTMLFile.xft" Name="EmptyHTMLFile.xft" />
 
734
                                                                                </Component>
 
735
                                                                                <Component Guid="861BC115-F99D-4492-AB4E-E7DA2DF0C60A" Id="EmptyMsBuildFileTemplate" DiskId="1">
 
736
                                                                                        <File Source="..\..\data\templates\file\Misc\EmptyMsBuildFile.xft" Id="EmptyMsBuildFile.xft" Name="EmptyMsBuildFile.xft" />
 
737
                                                                                </Component>
 
738
                                                                                <Component Guid="AE6F11B0-7C9F-49F8-A0EA-7140A399F670" Id="EmptyResourceFileTemplate" DiskId="1">
 
739
                                                                                        <File Source="..\..\data\templates\file\Misc\EmptyResourceFile.xft" Id="EmptyResourceFile.xft" Name="EmptyResourceFile.xft" />
 
740
                                                                                </Component>
 
741
                                                                                <Component Guid="1D716764-378A-4539-80B2-98D6BA4C2FAB" Id="EmptyTextFileTemplate" DiskId="1">
 
742
                                                                                        <File Source="..\..\data\templates\file\Misc\EmptyTextFile.xft" Id="EmptyTextFile.xft" Name="EmptyTextFile.xft" />
 
743
                                                                                </Component>
 
744
                                                                                <Component Guid="4E281CDB-E0FB-4583-9B06-A01C5778DE60" Id="EmptyXMLFileTemplate" DiskId="1">
 
745
                                                                                        <File Source="..\..\data\templates\file\Misc\EmptyXMLFile.xft" Id="EmptyXMLFile.xft" Name="EmptyXMLFile.xft" />
 
746
                                                                                </Component>
 
747
                                                                                <Component Guid="DC3D0C22-B117-4FD8-AFF9-77B0CB36ECD1" Id="AppConfigFileTemplate" DiskId="1">
 
748
                                                                                        <File Source="..\..\data\templates\file\Misc\AppConfigFile.xft" Id="AppConfigFile.xft" Name="AppConfigFile.xft" />
 
749
                                                                                </Component>
 
750
                                                                        </Directory>
 
751
                                                                        <Directory Id="SharpDevelopFileTemplatesFolder" Name="SharpDevelop">
 
752
                                                                                <Component Guid="5CD9262F-7A3B-4F28-94FD-43693E669E2B" Id="SharpDevelopFileTemplates" DiskId="1">
 
753
                                                                                        <File Source="..\..\data\templates\file\SharpDevelop\SimpleCommand.xft" Id="SimpleCommand.xft" Name="SimpleCommand.xft" />
 
754
                                                                                        <File Source="..\..\data\templates\file\SharpDevelop\AddInOptions.xft" Id="AddInOptions.xft" Name="AddInOptions.xft" />
 
755
                                                                                        <File Source="..\..\data\templates\file\SharpDevelop\ExampleMenuCommand.xft" Id="ExampleMenuCommand.xft" Name="ExampleMenuCommand.xft" />
 
756
                                                                                        <File Source="..\..\data\templates\file\SharpDevelop\ExampleOptionPanel.xft" Id="ExampleOptionPanel.xft" Name="ExampleOptionPanel.xft" />
 
757
                                                                                        <File Source="..\..\data\templates\file\SharpDevelop\ExamplePad.xft" Id="ExamplePad.xft" Name="ExamplePad.xft" />
 
758
                                                                                        <File Source="..\..\data\templates\file\SharpDevelop\ExampleView.xft" Id="ExampleView.xft" Name="ExampleView.xft" />
 
759
                                                                                </Component>
 
760
                                                                        </Directory>
 
761
                                                                        <Directory Id="VBFileTemplatesFolder" Name="VB">
 
762
                                                                                <Component Id="VBFileTemplates" Guid="F51E9F9D-F711-4124-90E6-C8CECD4E890C" DiskId="1">
 
763
                                                                                        <File Id="FileCategorySortOrder.xml" Name="FileCategorySortOrder.xml" Source="..\..\data\templates\file\VB\FileCategorySortOrder.xml" KeyPath="yes" />
 
764
                                                                                        <File Id="VB.Empty.xft" Name="VB.Empty.xft" Source="..\..\data\templates\file\VB\VB.Empty.xft" />
 
765
                                                                                        <File Id="VB.EmptyClass.xft" Name="VB.EmptyClass.xft" Source="..\..\data\templates\file\VB\VB.EmptyClass.xft" />
 
766
                                                                                        <File Id="VB.Exception.xft" Name="VB.Exception.xft" Source="..\..\data\templates\file\VB\VB.Exception.xft" />
 
767
                                                                                        <File Id="VB.Forms.Form.xft" Name="VB.Forms.Form.xft" Source="..\..\data\templates\file\VB\VB.Forms.Form.xft" />
 
768
                                                                                        <File Id="VB.Forms.UserControl.xft" Name="VB.Forms.UserControl.xft" Source="..\..\data\templates\file\VB\VB.Forms.UserControl.xft" />
 
769
                                                                                        <File Id="VB.Interface.xft" Name="VB.Interface.xft" Source="..\..\data\templates\file\VB\VB.Interface.xft" />
 
770
                                                                                        <File Id="VB.Module.xft" Name="VB.Module.xft" Source="..\..\data\templates\file\VB\VB.Module.xft" />
 
771
                                                                                        <File Id="VB.MyExtensionClass.xft" Name="VB.MyExtensionClass.xft" Source="..\..\data\templates\file\VB\VB.MyExtensionClass.xft" />
 
772
                                                                                        <File Id="VB.Patterns.Singleton.xft" Name="VB.Patterns.Singleton.xft" Source="..\..\data\templates\file\VB\VB.Patterns.Singleton.xft" />
 
773
                                                                                        <File Id="VB.Structure.xft" Name="VB.Structure.xft" Source="..\..\data\templates\file\VB\VB.Structure.xft" />
 
774
                                                                                        <File Id="VB.UnitTest.xft" Name="VB.UnitTest.xft" Source="..\..\data\templates\file\VB\VB.UnitTest.xft" />
 
775
                                                                                        <File Id="VB.Web.WebControl.xft" Name="VB.Web.WebControl.xft" Source="..\..\data\templates\file\VB\VB.Web.WebControl.xft" />
 
776
                                                                                        <File Id="VB.Web.WebForm.xft" Name="VB.Web.WebForm.xft" Source="..\..\data\templates\file\VB\VB.Web.WebForm.xft" />
 
777
                                                                                        <File Id="VB.Web.WebHandler.xft" Name="VB.Web.WebHandler.xft" Source="..\..\data\templates\file\VB\VB.Web.WebHandler.xft" />
 
778
                                                                                        <File Id="VB.Web.WebService.xft" Name="VB.Web.WebService.xft" Source="..\..\data\templates\file\VB\VB.Web.WebService.xft" />
 
779
                                                                                        <File Id="VB.WPFFlowDocument.xft" Name="VB.WPFFlowDocument.xft" Source="..\..\data\templates\file\VB\VB.WPFFlowDocument.xft" />
 
780
                                                                                        <File Id="VB.WPFPage.xft" Name="VB.WPFPage.xft" Source="..\..\data\templates\file\VB\VB.WPFPage.xft" />
 
781
                                                                                        <File Id="VB.WPFPageFunction.xft" Name="VB.WPFPageFunction.xft" Source="..\..\data\templates\file\VB\VB.WPFPageFunction.xft" />
 
782
                                                                                        <File Id="VB.WPFResourceDictionary.xft" Name="VB.WPFResourceDictionary.xft" Source="..\..\data\templates\file\VB\VB.WPFResourceDictionary.xft" />
 
783
                                                                                        <File Id="VB.WPFUserControl.xft" Name="VB.WPFUserControl.xft" Source="..\..\data\templates\file\VB\VB.WPFUserControl.xft" />
 
784
                                                                                        <File Id="VB.WPFWindow.xft" Name="VB.WPFWindow.xft" Source="..\..\data\templates\file\VB\VB.WPFWindow.xft" />
 
785
                                                                                </Component>
 
786
                                                                                <Component Id="VBMvcControllerFileTemplate" Guid="E56644A3-2A6C-4E49-88E2-85EEDA3B0999" DiskId="1">
 
787
                                                                                        <File Id="VB.Mvc.Controller.xft" Name="VB.Mvc.Controller.xft" Source="..\..\data\templates\file\VB\VB.Mvc.Controller.xft" KeyPath="yes" />
 
788
                                                                                </Component>
 
789
                                                                                <Component Id="VBMvcViewContentPageFileTemplate" Guid="D1A45934-F42E-4B69-82CA-FF0769A39268" DiskId="1">
 
790
                                                                                        <File Id="VB.Mvc.ViewContentPage.xft" Name="VB.Mvc.ViewContentPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewContentPage.xft" KeyPath="yes" />
 
791
                                                                                </Component>
 
792
                                                                                <Component Id="VBMvcViewMasterPageFileTemplate" Guid="014285CD-C24F-4C40-9C31-089C83E09660" DiskId="1">
 
793
                                                                                        <File Id="VB.Mvc.ViewMasterPage.xft" Name="VB.Mvc.ViewMasterPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewMasterPage.xft" KeyPath="yes" />
 
794
                                                                                </Component>
 
795
                                                                                <Component Id="VBMvcViewPageFileTemplate" Guid="4C6C4367-AC3E-49F3-AA89-2EC2AF5D27C5" DiskId="1">
 
796
                                                                                        <File Id="VB.Mvc.ViewPage.xft" Name="VB.Mvc.ViewPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewPage.xft" KeyPath="yes" />
 
797
                                                                                </Component>
 
798
                                                                                <Component Id="VBMvcViewUserControlFileTemplate" Guid="A6272501-2DB7-48B5-AF86-7D53016DF29A" DiskId="1">
 
799
                                                                                        <File Id="VB.Mvc.ViewUserControl.xft" Name="VB.Mvc.ViewUserControl.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewUserControl.xft" KeyPath="yes" />
 
800
                                                                                </Component>
 
801
                                                                        </Directory>
 
802
                                                                </Directory>
 
803
                                                                <Directory Id="ProjectTemplatesFolder" Name="project">
 
804
                                                                        <Directory Id="CSharpProjectTemplatesFolder" Name="CSharp">
 
805
                                                                                <Component Guid="888085CF-91C6-4669-97AF-BA99B3D9D38B" Id="CSharpProjectTemplates" DiskId="1">
 
806
                                                                                        <File Source="..\..\data\templates\project\CSharp\WPFNavigationApplication.xpt" Id="CSharpWPFNavigationApplication.xpt" Name="WPFNavigationApplication.xpt" />
 
807
                                                                                        <File Source="..\..\data\templates\project\CSharp\ConsoleProject.xpt" Id="CSharpConsoleProject.xpt" Name="ConsoleProject.xpt" />
 
808
                                                                                        <File Source="..\..\data\templates\project\CSharp\ControlLibrary.xpt" Id="CSharpControlLibrary.xpt" Name="ControlLibrary.xpt" />
 
809
                                                                                        <File Source="..\..\data\templates\project\CSharp\DefaultAssemblyInfo.cs" Id="CSharpDefaultAssemblyInfo.cs" Name="DefaultAssemblyInfo.cs" />
 
810
                                                                                        <File Source="..\..\data\templates\project\CSharp\EmptyProject.xpt" Id="CSharpEmptyProject.xpt" Name="EmptyProject.xpt" />
 
811
                                                                                        <File Source="..\..\data\templates\project\CSharp\FormsProject.xpt" Id="CSharpFormsProject.xpt" Name="FormsProject.xpt" />
 
812
                                                                                        <File Source="..\..\data\templates\project\CSharp\Library.xpt" Name="Library.xpt" Id="CSharpLibrary.xpt" />
 
813
                                                                                        <File Source="..\..\data\templates\project\CSharp\ProjectCategorySortOrder.xml" Id="CSharpProjectCategorySortOrder.xml" Name="ProjectCategorySortOrder.xml" />
 
814
                                                                                        <File Source="..\..\data\templates\project\CSharp\Service.xpt" Name="Service.xpt" Id="CSharpService.xpt" />
 
815
                                                                                        <File Source="..\..\data\templates\project\CSharp\SharedAddin.xpt" Id="CSharpSharedAddin.xpt" Name="SharedAddin.xpt" />
 
816
                                                                                        <File Source="..\..\data\templates\project\CSharp\SharpDevelopAddin.xpt" Id="CSharpSharpDevelopAddin.xpt" Name="SharpDevelopAddin.xpt" />
 
817
                                                                                        <File Source="..\..\data\templates\project\CSharp\SharpDevelopMacro.xpt" Id="CSharpSharpDevelopMacro.xpt" Name="SharpDevelopMacro.xpt" />
 
818
                                                                                        <File Source="..\..\data\templates\project\CSharp\WebpageProject.xpt" Id="CSharpWebpageProject.xpt" Name="WebpageProject.xpt" />
 
819
                                                                                        <File Source="..\..\data\templates\project\CSharp\WPFApplication.xpt" Id="CSharpWPFApplication.xpt" Name="WPFApplication.xpt" />
 
820
                                                                                        <File Source="..\..\data\templates\project\CSharp\SilverlightApplication.xpt" Id="CSharpSilverlightApplication.xpt" Name="SilverlightApplication.xpt" />
 
821
                                                                                </Component>
 
822
                                                                                <Component Guid="9D156515-C54F-4DAB-AD66-40E44C28E56C" Id="CSharpProjectSharpDevelopCustomToolTemplates" DiskId="1">
 
823
                                                                                        <File Source="..\..\data\templates\project\CSharp\SharpDevelopCustomTool.xpt" Id="SharpDevelopCustomTool.xpt" Name="SharpDevelopCustomTool.xpt" />
 
824
                                                                                        <File Source="..\..\data\templates\project\CSharp\SharpDevelopCustomToolTemplate.xft.xml" Id="SharpDevelopCustomToolTemplate.xft.xml" Name="SharpDevelopCustomToolTemplate.xft.xml" />
 
825
                                                                                </Component>
 
826
                                                                                <Component Guid="2EBDC2FE-A2C9-4023-BC86-0E688B5897A3" Id="CSharpNotifyIconProjectTemplate" DiskId="1">
 
827
                                                                                        <File Source="..\..\data\templates\project\CSharp\NotifyIcon.xpt" Id="NotifyIcon.xpt" Name="NotifyIcon.xpt" />
 
828
                                                                                        <File Source="..\..\data\templates\project\CSharp\NotifyIconResources.resx" Id="NotifyIconResources.resx" Name="NotifyIconResources.resx" />
 
829
                                                                                </Component>
 
830
                                                                                <Component Guid="7D1DCA03-CB13-4516-B232-028F53B096BF" Id="CSharpWebServiceProjectTemplate" DiskId="1">
 
831
                                                                                        <File Source="..\..\data\templates\project\CSharp\WebService.xpt" Id="WebService.xpt" Name="WebService.xpt" />
 
832
                                                                                </Component>
 
833
                                                                                <Component Guid="084FDE9A-C356-4D88-8718-00D53478225A" Id="WPFAssemblyInfoTemplate" DiskId="1">
 
834
                                                                                        <File Source="..\..\data\templates\project\CSharp\WPFAssemblyInfo.cs" Id="WPFAssemblyInfoTemplate" Name="WPFAssemblyInfo.cs" />
 
835
                                                                                </Component>
 
836
                                                                                <Component Id="CSharpMvcWebProjectTemplate" Guid="82060284-5670-4B2F-8AB0-BE075D09D4BE" DiskId="1">
 
837
                                                                                        <File Id="CSharp.MvcWebProject.xpt" Name="MvcWebProject.xpt" Source="..\..\data\templates\project\CSharp\MvcWebProject.xpt" KeyPath="yes" />
 
838
                                                                                </Component>
 
839
                                                                                <Component Id="EmptyCSharpMvcWebProjectTemplate" Guid="3EA7EF3D-F72A-446C-AA21-BA97EF9B321A" DiskId="1">
 
840
                                                                                        <File Id="Empty.CSharp.MvcWebProject.xpt" Name="EmptyMvcWebProject.xpt" Source="..\..\data\templates\project\CSharp\EmptyMvcWebProject.xpt" KeyPath="yes" />
 
841
                                                                                </Component>
 
842
                                                                        </Directory>
 
843
                                                                        <Directory Id="MiscProjectTemplatesFolder" Name="Misc">
 
844
                                                                                <Component Guid="F9A7F832-6EC8-4B15-A037-146BD028C9D5" Id="MiscProjectTemplates" DiskId="1">
 
845
                                                                                        <File Source="..\..\data\templates\project\Misc\BlankSolution.xpt" Id="BlankSolution.xpt" Name="BlankSolution.xpt" />
 
846
                                                                                </Component>
 
847
                                                                        </Directory>
 
848
                                                                        <Directory Id="VBProjectTemplatesFolder" Name="VB">
 
849
                                                                                <Component Guid="56C1A294-4C66-49AE-B5B4-2EA43E9FD028" Id="VBProjectTemplates" DiskId="1">
 
850
                                                                                        <File Source="..\..\data\templates\project\VB\SharpDevelopMacro.xpt" Id="VBSharpDevelopMacro.xpt" Name="SharpDevelopMacro.xpt" />
 
851
                                                                                        <File Source="..\..\data\templates\project\VB\ConsoleProject.xpt" Id="VBConsoleProject.xpt" Name="ConsoleProject.xpt" />
 
852
                                                                                        <File Source="..\..\data\templates\project\VB\ControlLibrary.xpt" Id="VBControlLibrary.xpt" Name="ControlLibrary.xpt" />
 
853
                                                                                        <File Source="..\..\data\templates\project\VB\DefaultAssemblyInfo.vb" Id="VBDefaultAssemblyInfo.vb" Name="DefaultAssemblyInfo.vb" />
 
854
                                                                                        <File Source="..\..\data\templates\project\VB\EmptyProject.xpt" Id="VBEmptyProject.xpt" Name="EmptyProject.xpt" />
 
855
                                                                                        <File Source="..\..\data\templates\project\VB\FormsProject.xpt" Id="VBFormsProject.xpt" Name="FormsProject.xpt" />
 
856
                                                                                        <File Source="..\..\data\templates\project\VB\Library.xpt" Name="Library.xpt" Id="VBLibrary.xpt" />
 
857
                                                                                        <File Source="..\..\data\templates\project\VB\ProjectCategorySortOrder.xml" Id="VBProjectCategorySortOrder.xml" Name="ProjectCategorySortOrder.xml" />
 
858
                                                                                        <File Source="..\..\data\templates\project\VB\Service.xpt" Name="Service.xpt" Id="VBService.xpt" />
 
859
                                                                                        <File Source="..\..\data\templates\project\VB\SharedAddin.xpt" Id="VBSharedAddin.xpt" Name="SharedAddin.xpt" />
 
860
                                                                                        <File Source="..\..\data\templates\project\VB\SharpDevelopAddin.xpt" Id="VBSharpDevelopAddin.xpt" Name="SharpDevelopAddin.xpt" />
 
861
                                                                                        <File Id="MySettings.settings" Name="MySettings.settings" Source="..\..\data\templates\project\VB\MySettings.settings" />
 
862
                                                                                        <File Id="MyWpfExtension.vb" Name="MyWpfExtension.vb" Source="..\..\data\templates\project\VB\MyWpfExtension.vb" />
 
863
                                                                                        <File Id="VB.NotifyIcon.xpt" Name="NotifyIcon.xpt" Source="..\..\data\templates\project\VB\NotifyIcon.xpt" />
 
864
                                                                                        <File Id="VB.NotifyIconResources.resx" Name="NotifyIconResources.resx" Source="..\..\data\templates\project\VB\NotifyIconResources.resx" />
 
865
                                                                                        <File Id="VB.SharpDevelopCustomTool.xpt" Name="SharpDevelopCustomTool.xpt" Source="..\..\data\templates\project\VB\SharpDevelopCustomTool.xpt" />
 
866
                                                                                        <File Id="VB.SharpDevelopCustomToolTemplate.xft.xml" Name="SharpDevelopCustomToolTemplate.xft.xml" Source="..\..\data\templates\project\VB\SharpDevelopCustomToolTemplate.xft.xml" />
 
867
                                                                                        <File Id="SilverlightApplication.xpt" Name="SilverlightApplication.xpt" Source="..\..\data\templates\project\VB\SilverlightApplication.xpt" />
 
868
                                                                                        <File Id="WebpageProject.xpt" Name="WebpageProject.xpt" Source="..\..\data\templates\project\VB\WebpageProject.xpt" />
 
869
                                                                                        <File Id="VB.WebService.xpt" Name="WebService.xpt" Source="..\..\data\templates\project\VB\WebService.xpt" />
 
870
                                                                                        <File Id="WPFApplication.xpt" Name="WPFApplication.xpt" Source="..\..\data\templates\project\VB\WPFApplication.xpt" />
 
871
                                                                                        <File Id="WPFAssemblyInfo.vb" Name="WPFAssemblyInfo.vb" Source="..\..\data\templates\project\VB\WPFAssemblyInfo.vb" />
 
872
                                                                                        <File Id="WPFNavigationApplication.xpt" Name="WPFNavigationApplication.xpt" Source="..\..\data\templates\project\VB\WPFNavigationApplication.xpt" />
 
873
                                                                                </Component>
 
874
                                                                                <Component Id="VBMvcWebProjectTemplate" Guid="FBDC313E-FC77-4500-84EC-35F0E19925C1" DiskId="1">
 
875
                                                                                        <File Id="VB.MvcWebProject.xpt" Name="MvcWebProject.xpt" Source="..\..\data\templates\project\VB\MvcWebProject.xpt" KeyPath="yes" />
 
876
                                                                                </Component>
 
877
                                                                                <Component Id="EmptyVBMvcWebProjectTemplate" Guid="DCCCBDDE-6F8A-4163-8294-F84E5E76917C" DiskId="1">
 
878
                                                                                        <File Id="Empty.VB.MvcWebProject.xpt" Name="EmptyMvcWebProject.xpt" Source="..\..\data\templates\project\VB\EmptyMvcWebProject.xpt" KeyPath="yes" />
 
879
                                                                                </Component>
 
880
                                                                        </Directory>
 
881
                                                                        <Component Guid="73EAC135-57B6-46C0-9F24-70A347B9AAC8" Id="ExampleProjectTemplate" DiskId="1">
 
882
                                                                                <File Source="..\..\data\templates\project\ComplexExample.xpt.test" Id="ComplexExample.xpt.test" Name="ComplexExample.xpt.test" />
 
883
                                                                        </Component>
 
884
                                                                        <Component Guid="56D8230D-F249-4BC8-A2A3-0BC800F29253" Id="AddInWritingHelp" DiskId="1">
 
885
                                                                                <File Source="..\..\data\templates\project\AddInWritingHelp.txt" Id="AddInWritingHelp.txt" Name="AddInWritingHelp.txt" />
 
886
                                                                        </Component>
 
887
                                                                </Directory>
 
888
                                                                <Directory Id="ProjectTemplatePackages" Name="packages">
 
889
                                                                        <Component Id="JQuery161NuGetPackage" Guid="E3651407-A9CF-4CE9-8603-1C9ABA7ED173" DiskId="1">
 
890
                                                                                <File Id="jQuery.1.6.1.nupkg" Name="jQuery.1.6.1.nupkg" Source="..\..\data\templates\packages\jQuery.1.6.1.nupkg" KeyPath="yes" />
 
891
                                                                        </Component>
 
892
                                                                        <Component Id="Modernizr17NuGetPackage" Guid="0913F3F6-C4A6-4E3C-B80D-CA61A91E0213" DiskId="1">
 
893
                                                                                <File Id="Modernizr.1.7.nupkg" Name="Modernizr.1.7.nupkg" Source="..\..\data\templates\packages\Modernizr.1.7.nupkg" KeyPath="yes" />
 
894
                                                                        </Component>
 
895
                                                                </Directory>
 
896
                                                        </Directory>
 
897
                                                </Directory>
 
898
                                                <Directory Id="AddInsFolder" Name="AddIns">
 
899
                                                        <Component Guid="BD536EB3-6629-4699-9083-673B6175E044" Id="ICSharpCode.SharpDevelop.addin" DiskId="1">
 
900
                                                                <File Source="..\..\AddIns\ICSharpCode.SharpDevelop.addin" Id="ICSharpCode.SharpDevelop.addin" Name="ICSharpCode.SharpDevelop.addin" />
 
901
                                                        </Component>
 
902
                                                        <Directory Id="AnalysisFolder" Name="Analysis">
 
903
                                                                <Directory Id="CodeAnalysisFolder" Name="CodeAnalysis">
 
904
                                                                        <Component Guid="6CF33D51-953D-4E5F-840C-7FDCFD757520" Id="CodeAnalysisFiles" DiskId="1">
 
905
                                                                                <File Source="..\..\AddIns\Analysis\CodeAnalysis\CodeAnalysis.dll" Id="CodeAnalysis.dll" Name="CodeAnalysis.dll" Assembly=".net" AssemblyApplication="CodeAnalysis.dll" AssemblyManifest="CodeAnalysis.dll" KeyPath="yes" />
 
906
                                                                                <File Source="..\..\AddIns\Analysis\CodeAnalysis\CodeAnalysis.addin" Id="CodeAnalysis.addin" Name="CodeAnalysis.addin" />
 
907
                                                                        </Component>
 
908
                                                                </Directory>
 
909
                                                                <Directory Id="CodeCoverageFolder" Name="CodeCoverage">
 
910
                                                                        <Component Guid="86A8B8D1-9FFD-46A4-84F8-2BD530E1F83E" Id="CodeCoverageFiles" DiskId="1">
 
911
                                                                                <File Source="..\..\AddIns\Analysis\CodeCoverage\CodeCoverage.dll" Id="CodeCoverage.dll" Name="CodeCoverage.dll" Assembly=".net" AssemblyApplication="CodeCoverage.dll" AssemblyManifest="CodeCoverage.dll" KeyPath="yes" />
 
912
                                                                                <File Source="..\..\AddIns\Analysis\CodeCoverage\CodeCoverage.addin" Id="CodeCoverage.addin" Name="CodeCoverage.addin" />
 
913
                                                                        </Component>
 
914
                                                                </Directory>
 
915
                                                                <Directory Id="UnitTestingFolder" Name="UnitTesting">
 
916
                                                                        <Component Guid="F2F7F12D-1920-49BC-86B0-65B5A1B76516" Id="UnitTestingAddInFiles" DiskId="1">
 
917
                                                                                <File Source="..\..\AddIns\Analysis\UnitTesting\UnitTesting.dll" Id="UnitTesting.dll" Name="UnitTesting.dll" Assembly=".net" AssemblyApplication="UnitTesting.dll" AssemblyManifest="UnitTesting.dll" KeyPath="yes" />
 
918
                                                                                <File Source="..\..\AddIns\Analysis\UnitTesting\UnitTesting.addin" Id="UnitTesting.addin" Name="UnitTesting.addin" />
 
919
                                                                        </Component>
 
920
                                                                </Directory>
 
921
                                                                <Directory Id="SourceAnalysis" Name="SourceAnalysis">
 
922
                                                                        <Component Guid="C9D099BC-CF4D-404A-BB2F-B13D4541DA0F" Id="SharpDevelopSourceAnalysisTargets" DiskId="1">
 
923
                                                                                <File Source="..\..\AddIns\Analysis\SourceAnalysis\SharpDevelop.SourceAnalysis.targets" Name="SharpDevelop.SourceAnalysis.targets" Id="SharpDevelop.SourceAnalysis.targets" KeyPath="yes" />
 
924
                                                                        </Component>
 
925
                                                                        <Component Guid="4E61BF16-0C2E-424A-8D1B-80F89B3F456B" Id="SourceAnalysisAddin" DiskId="1">
 
926
                                                                                <File Source="..\..\AddIns\Analysis\SourceAnalysis\SourceAnalysis.addin" Name="SourceAnalysis.addin" Id="SourceAnalysis.addin" KeyPath="yes" />
 
927
                                                                        </Component>
 
928
                                                                        <Component Guid="C4A33C3E-91B6-4984-86B1-07C5C49C180D" Id="SourceAnalysisDll" DiskId="1">
 
929
                                                                                <File Source="..\..\AddIns\Analysis\SourceAnalysis\SourceAnalysis.dll" Name="SourceAnalysis.dll" Id="SourceAnalysis.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="SourceAnalysis.dll" AssemblyManifest="SourceAnalysis.dll" />
 
930
                                                                        </Component>
 
931
                                                                </Directory>
 
932
                                                        </Directory>
 
933
                                                        <Directory Id="BackendBindingsFolder" Name="BackendBindings">
 
934
                                                                <Directory Id="BooBindingFolder" Name="BooBinding">
 
935
                                                                        <Directory Id="BooTemplatesFolder" Name="Templates">
 
936
                                                                                <Component Guid="9631E95B-711B-4328-869F-1E53FD264FFA" Id="BooConsoleProjectTemplate" DiskId="1">
 
937
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="Templates.ConsoleProject2.xpt" KeyPath="yes" />
 
938
                                                                                </Component>
 
939
                                                                                <Component Guid="548B93F9-1FB8-43BA-91A1-537BEECD0B14" Id="DefaultAssemblyInfoBooTemplate" DiskId="1">
 
940
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\DefaultAssemblyInfo.boo" Name="DefaultAssemblyInfo.boo" Id="DefaultAssemblyInfo.boo" KeyPath="yes" />
 
941
                                                                                </Component>
 
942
                                                                                <Component Guid="4FE739A1-11A8-4735-A9C5-726F4018D6C4" Id="BooEmptyFileTemplate" DiskId="1">
 
943
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\Empty.xft" Name="Empty.xft" Id="Empty.xft" KeyPath="yes" />
 
944
                                                                                </Component>
 
945
                                                                                <Component Guid="C9363F47-BA44-4632-8918-DADA2159817A" Id="BooEmptyClassTemplate" DiskId="1">
 
946
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="EmptyClass.xft" KeyPath="yes" />
 
947
                                                                                </Component>
 
948
                                                                                <Component Guid="84390147-1609-4464-8F12-9DCDCCE3FF60" Id="BooFormTemplate" DiskId="1">
 
949
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\Form.xft" Name="Form.xft" Id="Form.xft" KeyPath="yes" />
 
950
                                                                                </Component>
 
951
                                                                                <Component Guid="117E4068-A745-446E-A07D-335ADCCABB56" Id="BooFormsProjectTemplate" DiskId="1">
 
952
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\FormsProject.xpt" Name="FormsProject.xpt" Id="FormsProject.xpt" KeyPath="yes" />
 
953
                                                                                </Component>
 
954
                                                                                <Component Guid="1E367FC3-33C7-45D4-9748-3A45DEC09EC8" Id="BooLibraryProjectTemplate" DiskId="1">
 
955
                                                                                        <File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\Library.xpt" Name="Library.xpt" Id="Library.xpt" />
 
956
                                                                                </Component>
 
957
                                                                        </Directory>
 
958
                                                                        <Component Guid="0E8D9201-2A18-441B-8634-1E87273872DC" Id="BooLangInterpreterDll" DiskId="1">
 
959
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.Interpreter.dll" Name="Boo.Lang.Interpreter.dll" Id="Boo.Lang.Interpreter.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.Interpreter.dll" AssemblyManifest="Boo.Lang.Interpreter.dll" />
 
960
                                                                        </Component>
 
961
                                                                        <Component Guid="7BA980AC-14A6-4330-B8F3-D00634171097" Id="BooLangCodeDomDll" DiskId="1">
 
962
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.CodeDom.dll" Name="Boo.Lang.CodeDom.dll" Id="Boo.Lang.CodeDom.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.CodeDom.dll" AssemblyManifest="Boo.Lang.CodeDom.dll" />
 
963
                                                                        </Component>
 
964
                                                                        <Component Guid="B0B5598D-31AA-4A28-8456-7CE4C904A2DA" Id="BooLangCompilerDll" DiskId="1">
 
965
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.Compiler.dll" Name="Boo.Lang.Compiler.dll" Id="Boo.Lang.Compiler.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.Compiler.dll" AssemblyManifest="Boo.Lang.Compiler.dll" />
 
966
                                                                        </Component>
 
967
                                                                        <Component Guid="4F60B420-1ABF-4B39-92C9-796B8CAF699E" Id="BooLangDll" DiskId="1">
 
968
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.dll" Name="Boo.Lang.dll" Id="Boo.Lang.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.dll" AssemblyManifest="Boo.Lang.dll" />
 
969
                                                                        </Component>
 
970
                                                                        <Component Guid="9D3C8105-B90E-4312-AF93-1B0217CE4A1B" Id="BooLangExtensionsDll" DiskId="1">
 
971
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.Extensions.dll" Name="Boo.Lang.Extensions.dll" Id="Boo.Lang.Extensions.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.Extensions.dll" AssemblyManifest="Boo.Lang.Extensions.dll" />
 
972
                                                                        </Component>
 
973
                                                                        <Component Guid="120CD691-2ADD-4C6C-AF03-5F3EB88BAF78" Id="BooLangParserDll" DiskId="1">
 
974
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.Parser.dll" Name="Boo.Lang.Parser.dll" Id="Boo.Lang.Parser.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.Parser.dll" AssemblyManifest="Boo.Lang.Parser.dll" />
 
975
                                                                        </Component>
 
976
                                                                        <Component Guid="C3CAD837-20D3-446C-B72F-CB907CB60252" Id="BooLangUsefulDll" DiskId="1">
 
977
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.Useful.dll" Name="Boo.Lang.Useful.dll" Id="Boo.Lang.Useful.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Lang.Useful.dll" AssemblyManifest="Boo.Lang.Useful.dll" />
 
978
                                                                        </Component>
 
979
                                                                        <Component Guid="7D38D006-2248-4FC1-983A-25EB0141FC3C" Id="BooMicrosoftBuildTargets" DiskId="1">
 
980
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.targets" Name="Boo.Microsoft.Build.targets" Id="Boo.Microsoft.Build.targets" KeyPath="yes" />
 
981
                                                                        </Component>
 
982
                                                                        <Component Guid="6094FA81-9C8C-407C-8FB7-F03CBE91E81F" Id="BooMicrosoftBuildTasksDll" DiskId="1">
 
983
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.Tasks.dll" Name="Boo.Microsoft.Build.Tasks.dll" Id="Boo.Microsoft.Build.Tasks.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Boo.Microsoft.Build.Tasks.dll" AssemblyManifest="Boo.Microsoft.Build.Tasks.dll" />
 
984
                                                                        </Component>
 
985
                                                                        <Component Guid="92AF15AB-E899-4E80-872E-EBEC92F0FCC9" Id="BooBindingAddin" DiskId="1">
 
986
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\BooBinding.addin" Name="BooBinding.addin" Id="BooBinding.addin" KeyPath="yes" />
 
987
                                                                        </Component>
 
988
                                                                        <Component Guid="EA750ED6-ED19-4892-9A41-78883116F061" Id="BooBindingDll" DiskId="1">
 
989
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\BooBinding.dll" Name="BooBinding.dll" Id="BooBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="BooBinding.dll" AssemblyManifest="BooBinding.dll" />
 
990
                                                                        </Component>
 
991
                                                                        <Component Guid="8F2E8A40-28D8-4B11-9278-CE7D6C1E4291" Id="BoocExe" DiskId="1">
 
992
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\booc.exe" Name="booc.exe" Id="booc.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="booc.exe" AssemblyManifest="booc.exe" />
 
993
                                                                        </Component>
 
994
                                                                        <Component Guid="AA1A31D7-906E-48AA-B29C-FA0333C8EE5A" Id="BoocExeConfig" DiskId="1">
 
995
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\booc.exe.config" Name="booc.exe.config" Id="booc.exe.config" KeyPath="yes" />
 
996
                                                                        </Component>
 
997
                                                                        <Component Guid="9BB883E9-C7E0-451B-8A48-E6A22EF6DC5A" Id="BoocRsp" DiskId="1">
 
998
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\booc.rsp" Name="booc.rsp" Id="booc.rsp" KeyPath="yes" />
 
999
                                                                        </Component>
 
1000
                                                                        <Component Guid="6AAC2867-DBA1-4AFA-830B-1FE0A918BA11" Id="NRefactoryToBooConverterDll" DiskId="1">
 
1001
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\NRefactoryToBooConverter.dll" Name="NRefactoryToBooConverter.dll" Id="NRefactoryToBooConverter.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="NRefactoryToBooConverter.dll" AssemblyManifest="NRefactoryToBooConverter.dll" />
 
1002
                                                                        </Component>
 
1003
                                                                        <Component Guid="E80EF895-720E-4F38-AFAF-9E33B3D9415E" Id="BooLangPatternMatchingDll" DiskId="1">
 
1004
                                                                                <File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.PatternMatching.dll" Name="Boo.Lang.PatternMatching.dll" Id="Boo.Lang.PatternMatching.dll" KeyPath="yes" />
 
1005
                                                                        </Component>
 
1006
                                                                </Directory>
 
1007
                                                                <Directory Id="CSharpBindingFolder" Name="CSharpBinding">
 
1008
                                                                        <Component Guid="1E6F20EC-6BF4-45C0-AE99-319FBF568BD1" Id="CSharpBindingFiles" DiskId="1">
 
1009
                                                                                <File Source="..\..\AddIns\BackendBindings\CSharpBinding\CSharpBinding.dll" Id="CSharpBinding.dll" Name="CSharpBinding.dll" Assembly=".net" AssemblyApplication="CSharpBinding.dll" AssemblyManifest="CSharpBinding.dll" KeyPath="yes" />
 
1010
                                                                                <File Source="..\..\AddIns\BackendBindings\CSharpBinding\CSharpBinding.addin" Id="CSharpBinding.addin" Name="CSharpBinding.addin" />
 
1011
                                                                        </Component>
 
1012
                                                                </Directory>
 
1013
                                                                <Directory Id="VBNetBindingFolder" Name="VBNetBinding">
 
1014
                                                                        <Component Guid="0F51B5A5-517F-40B3-932A-A0A693926E67" Id="VBNetBindingFiles" DiskId="1">
 
1015
                                                                                <File Source="..\..\AddIns\BackendBindings\VBNetBinding\ICSharpCode.VBNetBinding.dll" Id="ICSharpCode.VBNetBinding.dll" Name="ICSharpCode.VBNetBinding.dll" Assembly=".net" AssemblyApplication="ICSharpCode.VBNetBinding.dll" AssemblyManifest="ICSharpCode.VBNetBinding.dll" KeyPath="yes" />
 
1016
                                                                                <File Source="..\..\AddIns\BackendBindings\VBNetBinding\VBNetBinding.addin" Id="VBNetBinding.addin" Name="VBNetBinding.addin" />
 
1017
                                                                        </Component>
 
1018
                                                                </Directory>
 
1019
                                                                <Directory Id="WixBindingFolder" Name="WixBinding">
 
1020
                                                                        <Component Guid="A54D7821-BBFD-49E9-8FFB-1AB224E25521" Id="WixBindingFiles" DiskId="1">
 
1021
                                                                                <File Source="..\..\AddIns\BackendBindings\WixBinding\WixBinding.dll" Id="WixBinding.dll" Name="WixBinding.dll" Assembly=".net" AssemblyApplication="WixBinding.dll" AssemblyManifest="WixBinding.dll" KeyPath="yes" />
 
1022
                                                                                <File Source="..\..\AddIns\BackendBindings\WixBinding\SetupDialogControlLibrary.sdcl" Id="SetupDialogControlLibrary.sdcl" Name="SetupDialogControlLibrary.sdcl" />
 
1023
                                                                                <File Source="..\..\AddIns\BackendBindings\WixBinding\WixBinding.addin" Id="WixBinding.addin" Name="WixBinding.addin" />
 
1024
                                                                        </Component>
 
1025
                                                                        <Directory Id="WixBindingTemplatesFolder" Name="Templates">
 
1026
                                                                                <Component Id="EmptyWixFileTemplate" DiskId="1" Guid="51546D91-43BA-4311-8E16-34AC9E1BFC7A">
 
1027
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixFile.xft" Id="EmptyWixFile.xft" Name="EmptyWixFile.xft" />
 
1028
                                                                                </Component>
 
1029
                                                                                <Component Id="WixDefaultLicenseRtf" DiskId="1" Guid="A4E7062F-30A7-474F-8DBD-47652F12548E">
 
1030
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\DefaultLicense.rtf" Id="DefaultLicense.rtf" Name="DefaultLicense.rtf" />
 
1031
                                                                                </Component>
 
1032
                                                                                <Component Guid="C880DD6E-EFD9-436D-8CC3-B91A45BB53E1" DiskId="1" Id="WixUIFeatureTreeProjectTemplate">
 
1033
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIFeatureTreeProject.xpt" Id="WixUIFeatureTreeProject.xpt" Name="WixUIFeatureTreeProject.xpt" KeyPath="yes" />
 
1034
                                                                                </Component>
 
1035
                                                                                <Component Guid="5F910AA8-EA41-46C7-9B8B-9DA6DAC835F0" Id="WixUIInstallDirProjectTemplate" DiskId="1">
 
1036
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIInstallDirProject.xpt" Id="WixUIInstallDirProject.xpt" Name="WixUIInstallDirProject.xpt" KeyPath="yes" />
 
1037
                                                                                </Component>
 
1038
                                                                                <Component Guid="36FF353F-2C22-42D1-9E2A-B2CE5FC2BA56" Id="WixUIMinimalProjectTemplate" DiskId="1">
 
1039
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIMinimalProject.xpt" Id="WixUIMinimalProject.xpt" Name="WixUIMinimalProject.xpt" KeyPath="yes" />
 
1040
                                                                                </Component>
 
1041
                                                                                <Component Guid="D930CB0E-1554-457C-A274-FF58D10D3659" Id="WixUIMondoProjectTemplate" DiskId="1">
 
1042
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIMondoProject.xpt" Id="WixUIMondoProject.xpt" Name="WixUIMondoProject.xpt" KeyPath="yes" />
 
1043
                                                                                </Component>
 
1044
                                                                                <Component Guid="5226A62B-AE20-42E9-8921-446B4BE6E95C" Id="EmptyWixProjectTemplate" DiskId="1">
 
1045
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixProject.xpt" Name="EmptyWixProject.xpt" Id="EmptyWixProject.xpt" KeyPath="yes" />
 
1046
                                                                                </Component>
 
1047
                                                                                <Component Guid="533F3774-9D09-4F72-9218-5CA4AD4217C0" Id="EmptyWixDialogTemplate" DiskId="1">
 
1048
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixDialog.xft" Name="EmptyWixDialog.xft" Id="EmptyWixDialog.xft" KeyPath="yes" />
 
1049
                                                                                </Component>
 
1050
                                                                                <Component Guid="20656F0D-CAE2-4B19-B5DE-ABF842A5939B" Id="WixDialogTemplate" DiskId="1">
 
1051
                                                                                        <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixDialog.xft" Name="WixDialog.xft" Id="WixDialog.xft" KeyPath="yes" />
 
1052
                                                                                </Component>
 
1053
                                                                        </Directory>
 
1054
                                                                </Directory>
 
1055
                                                                <Directory Id="PythonBinding" Name="PythonBinding">
 
1056
                                                                        <Component Guid="AF97A77A-F986-4284-BC0A-9568B1419FC1" Id="IpyExe" DiskId="1">
 
1057
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\ipy.exe" Name="ipy.exe" Id="ipy.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ipy.exe" AssemblyManifest="ipy.exe">
 
1058
                                                                                        <netfx:NativeImage Id="IpyExeNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
1059
                                                                                </File>
 
1060
                                                                        </Component>
 
1061
                                                                        <Component Guid="A7C0416F-8B3F-4C64-A25C-8B48AADD957D" Id="IronPythonDll" DiskId="1">
 
1062
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.dll" Id="IronPython.dll" Name="IronPython.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.dll" AssemblyManifest="IronPython.dll">
 
1063
                                                                                        <netfx:NativeImage Id="IronPythonDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
1064
                                                                                </File>
 
1065
                                                                        </Component>
 
1066
                                                                        <Component Guid="ADBB3544-DE83-4676-A95E-3BC497ABC94D" Id="PythonBuildTasksDll" DiskId="1">
 
1067
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\Python.Build.Tasks.dll" Id="Python.Build.Tasks.dll" Name="Python.Build.Tasks.dll" Assembly=".net" AssemblyApplication="Python.Build.Tasks.dll" AssemblyManifest="Python.Build.Tasks.dll" KeyPath="yes" />
 
1068
                                                                        </Component>
 
1069
                                                                        <Component Guid="CD84F3F1-F3E8-4EF2-A1BD-8092076EBBB8" Id="PythonBindingAddin" DiskId="1">
 
1070
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\PythonBinding.addin" Id="PythonBinding.addin" Name="PythonBinding.addin" KeyPath="yes" />
 
1071
                                                                        </Component>
 
1072
                                                                        <Component Guid="AE71C296-051C-4C19-90B0-2C261D58CCFA" Id="PythonBindingDll" DiskId="1">
 
1073
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\PythonBinding.dll" Id="PythonBinding.dll" Name="PythonBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PythonBinding.dll" AssemblyManifest="PythonBinding.dll" />
 
1074
                                                                        </Component>
 
1075
                                                                        <Component Guid="A74FF259-8D05-4FA5-9664-63F2ECB6E568" Id="SharpDevelopBuildPythonTargets" DiskId="1">
 
1076
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\SharpDevelop.Build.Python.targets" Id="SharpDevelop.Build.Python.targets" Name="SharpDevelop.Build.Python.targets" KeyPath="yes" />
 
1077
                                                                        </Component>
 
1078
                                                                        <Directory Id="PythonTemplates" Name="Templates">
 
1079
                                                                                <Component Guid="2F5F1DC5-A04F-4FF2-8B68-BC803B19F80A" Id="PythonConsoleProjectTemplate" DiskId="1">
 
1080
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\ConsoleProject.xpt" Id="Templates.ConsoleProject.xpt" Name="ConsoleProject.xpt" KeyPath="yes" />
 
1081
                                                                                </Component>
 
1082
                                                                                <Component Guid="1F303642-32B5-4B95-A8A8-3EEB2ED76F21" Id="PythonEmptyFileTemplate" DiskId="1">
 
1083
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\Empty.xft" Name="Empty.xft" Id="Templates.Empty.xft" KeyPath="yes" />
 
1084
                                                                                </Component>
 
1085
                                                                                <Component Guid="99E81C31-321C-4A15-A502-7E5E27891810" Id="PythonEmptyClassTemplate" DiskId="1">
 
1086
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyClass.xft" Id="Templates.EmptyClass.xft" Name="EmptyClass.xft" KeyPath="yes" />
 
1087
                                                                                </Component>
 
1088
                                                                                <Component Guid="C7F4F370-4070-4BFD-9325-2D2FFEC27A5A" Id="PythonEmptyFormTemplate" DiskId="1">
 
1089
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyForm.xft" Id="EmptyForm.xft" Name="EmptyForm.xft" KeyPath="yes" />
 
1090
                                                                                </Component>
 
1091
                                                                                <Component Guid="FBEF6AC5-7658-46C3-9805-239B4223CAB3" Id="PythonEmptyUserControlTemplate" DiskId="1">
 
1092
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyUserControl.xft" Id="EmptyUserControl.xft" Name="EmptyUserControl.xft" KeyPath="yes" />
 
1093
                                                                                </Component>
 
1094
                                                                                <Component Guid="C077D46F-D6EF-4187-9715-3EAD8A43A1EC" Id="PythonFormsProjectTemplate" DiskId="1">
 
1095
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\FormsProject.xpt" Id="Templates.FormsProject.xpt" Name="FormsProject.xpt" KeyPath="yes" />
 
1096
                                                                                </Component>
 
1097
                                                                                <Component Guid="6AE9C385-3B6A-4DD6-9CB9-92EDEEEF3FCF" Id="PythonLibraryProjectTemplate" DiskId="1">
 
1098
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\LibraryProject.xpt" Id="Templates.LibraryProject.xpt" Name="LibraryProject.xpt" KeyPath="yes" />
 
1099
                                                                                </Component>
 
1100
                                                                                <Component Id="PythonWPFApplicationProjectTemplate" Guid="5453F13D-AF45-464D-859E-A4DD8A66557C" DiskId="1">
 
1101
                                                                                        <File Id="Python.WPFApplication.xpt" Name="WPFApplication.xpt" Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\WPFApplication.xpt" KeyPath="yes" />
 
1102
                                                                                </Component>
 
1103
                                                                                <Component Id="PythonWPFWindowFileTemplate" Guid="BCCF7EE5-9A2F-42D2-B1B5-D885D6B51BDF" DiskId="1">
 
1104
                                                                                        <File Id="Python.WPFWindow.xft" Name="WPFWindow.xft" Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\WPFWindow.xft" KeyPath="yes" />
 
1105
                                                                                </Component>
 
1106
                                                                                <Component Id="PythonSilverlightApplicationProjectTemplate" Guid="B0A5F30B-ABA7-4482-A928-1A02F8C83FD8" DiskId="1">
 
1107
                                                                                        <File Id="Python.SilverlightApplication.xpt" Name="SilverlightApplication.xpt" Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\SilverlightApplication.xpt" KeyPath="yes" />
 
1108
                                                                                </Component>
 
1109
                                                                        </Directory>
 
1110
                                                                        <Component Guid="DE04B306-0C6D-434C-A6DC-6F450AAFB108" Id="IronPythonModulesDll" DiskId="1">
 
1111
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.Modules.dll" Name="IronPython.Modules.dll" Id="IronPython.Modules.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.Modules.dll" AssemblyManifest="IronPython.Modules.dll">
 
1112
                                                                                        <netfx:NativeImage Id="IronPythonModulesDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
1113
                                                                                </File>
 
1114
                                                                        </Component>
 
1115
                                                                        <Component Guid="5849E9E1-39E4-45B5-B2F0-B07F8A21085D" Id="MicrosoftScriptingDll" DiskId="1">
 
1116
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Scripting.dll" Name="Microsoft.Scripting.dll" Id="Microsoft.Scripting.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Scripting.dll" AssemblyManifest="Microsoft.Scripting.dll">
 
1117
                                                                                        <netfx:NativeImage Id="MicrosoftScriptingDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
1118
                                                                                </File>
 
1119
                                                                        </Component>
 
1120
                                                                        <Directory Id="PythonLib" Name="Lib">
 
1121
                                                                                <Component Guid="98D4136A-897A-479A-AD50-E89600C5016D" Id="PythonBindingLibRunpyPy" DiskId="1">
 
1122
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\runpy.py" Name="runpy.py" Id="runpy.py" KeyPath="yes" />
 
1123
                                                                                </Component>
 
1124
                                                                                <Component Guid="E091A881-9015-47A6-ADBE-EAA87A5171C3" Id="PythonBindingLibSitePy" DiskId="1">
 
1125
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\site.py" Name="site.py" Id="site.py" KeyPath="yes" />
 
1126
                                                                                </Component>
 
1127
                                                                                <Component Guid="240EC6F6-6377-4840-A1C9-BDC15F653669" Id="PythonBindingLibFuturePy" DiskId="1">
 
1128
                                                                                        <File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\__future__.py" Name="__future__.py" Id="__future__.py" KeyPath="yes" />
 
1129
                                                                                </Component>
 
1130
                                                                        </Directory>
 
1131
                                                                        <Component Guid="694B49D9-3EDA-4B3E-AE21-C4462A99ED0D" Id="IronPythonModulesXml" DiskId="1">
 
1132
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.Modules.xml" Name="IronPython.Modules.xml" Id="IronPython.Modules.xml" KeyPath="yes" />
 
1133
                                                                        </Component>
 
1134
                                                                        <Component Guid="0234CFCB-0064-4D59-B39F-0C33735C9B5B" Id="IronPythonXml" DiskId="1">
 
1135
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.xml" Name="IronPython.xml" Id="IronPython.xml" KeyPath="yes" />
 
1136
                                                                        </Component>
 
1137
                                                                        <Component Guid="6E1D93BF-A105-4526-8BA0-13B69EEB1360" Id="MicrosoftDynamicDll" DiskId="1">
 
1138
                                                                                <File Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Dynamic.dll" Name="Microsoft.Dynamic.dll" Id="Microsoft.Dynamic.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Dynamic.dll" AssemblyManifest="Microsoft.Dynamic.dll">
 
1139
                                                                                        <netfx:NativeImage Id="MicrosoftDynamicDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" />
 
1140
                                                                                </File>
 
1141
                                                                        </Component>
 
1142
                                                                        <Directory Id="TestRunner" Name="TestRunner">
 
1143
                                                                                <Component Id="PythonBindingSdTestPy" Guid="7D87D983-8924-456E-8E66-2C6AC76C16A6" DiskId="1">
 
1144
                                                                                        <File Id="sdtest.py" Name="sdtest.py" Source="..\..\AddIns\BackendBindings\PythonBinding\TestRunner\sdtest.py" KeyPath="yes" />
 
1145
                                                                                </Component>
 
1146
                                                                                <Component Id="PythonBindingSdTestRunnerPy" Guid="E15A20D3-BAA0-476F-9380-0B662D5C8D1E" DiskId="1">
 
1147
                                                                                        <File Id="sdtestrunner.py" Name="sdtestrunner.py" Source="..\..\AddIns\BackendBindings\PythonBinding\TestRunner\sdtestrunner.py" KeyPath="yes" />
 
1148
                                                                                </Component>
 
1149
                                                                        </Directory>
 
1150
                                                                        <Component Id="PythonChironExe" Guid="3BF49CCE-0152-41E6-A693-07EF0F9BEBCF" DiskId="1">
 
1151
                                                                                <File Id="Python.Chiron.exe" Name="Chiron.exe" Source="..\..\AddIns\BackendBindings\PythonBinding\Chiron.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="Python.Chiron.exe" AssemblyManifest="Python.Chiron.exe" />
 
1152
                                                                        </Component>
 
1153
                                                                        <Component Id="PythonChironExeConfig" Guid="1078B0F8-3984-45A8-846C-68479D717C03" DiskId="1">
 
1154
                                                                                <File Id="Python.Chiron.exe.Config" Name="Chiron.exe.Config" Source="..\..\AddIns\BackendBindings\PythonBinding\Chiron.exe.Config" KeyPath="yes" />
 
1155
                                                                        </Component>
 
1156
                                                                        <Component Id="IronPythonLicenseRtf" Guid="3F3B30E2-9CD4-4D32-95AF-82799C19ED0A" DiskId="1">
 
1157
                                                                                <File Id="IronPython.License.Rtf" Name="License.Rtf" Source="..\..\AddIns\BackendBindings\PythonBinding\License.Rtf" KeyPath="yes" />
 
1158
                                                                        </Component>
 
1159
                                                                        <Component Id="MicrosoftScriptingMetadataDll" Guid="7FD24C6E-5E64-4CCB-8C1E-2315498F81B1" DiskId="1">
 
1160
                                                                                <File Id="Microsoft.Scripting.Metadata.dll" Name="Microsoft.Scripting.Metadata.dll" Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Scripting.Metadata.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Scripting.Metadata.dll" AssemblyManifest="Microsoft.Scripting.Metadata.dll" />
 
1161
                                                                        </Component>
 
1162
                                                                        <Directory Id="PythonBindingDLLsFolder" Name="DLLs">
 
1163
                                                                                <Component Id="IronPythonWpfDll" Guid="D7A0FA37-CA4A-4678-8650-A8BF37A5FED0" DiskId="1">
 
1164
                                                                                        <File Id="IronPython.Wpf.dll" Name="IronPython.Wpf.dll" Source="..\..\AddIns\BackendBindings\PythonBinding\DLLs\IronPython.Wpf.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.Wpf.dll" AssemblyManifest="IronPython.Wpf.dll" />
 
1165
                                                                                </Component>
 
1166
                                                                        </Directory>
 
1167
                                                                </Directory>
 
1168
                                                                <Directory Id="FSharpBinding" Name="FSharpBinding">
 
1169
                                                                        <Component Guid="6B4F28AF-133C-4FEB-98DB-67A5405AEB12" Id="FSharpBindingAddin" DiskId="1">
 
1170
                                                                                <File Source="..\..\AddIns\BackendBindings\FSharpBinding\FSharpBinding.addin" Name="FSharpBinding.addin" Id="FSharpBinding.addin" KeyPath="yes" />
 
1171
                                                                        </Component>
 
1172
                                                                        <Component Guid="810CE373-569B-41C3-ADDA-D2F0E0EFD5DE" Id="FSharpBindingDll" DiskId="1">
 
1173
                                                                                <File Source="..\..\AddIns\BackendBindings\FSharpBinding\FSharpBinding.dll" Name="FSharpBinding.dll" Id="FSharpBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="FSharpBinding.dll" AssemblyManifest="FSharpBinding.dll" />
 
1174
                                                                        </Component>
 
1175
                                                                        <Directory Id="FSharpBindingTemplates" Name="Templates">
 
1176
                                                                                <Component Guid="37A7695A-BA60-45A6-9BDB-FAE663D7A4C0" Id="FSharpConsoleProjectTemplate" DiskId="1">
 
1177
                                                                                        <File Source="..\..\AddIns\BackendBindings\FSharpBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="FSharp.Templates.ConsoleProject.xpt" KeyPath="yes" />
 
1178
                                                                                </Component>
 
1179
                                                                                <Component Guid="33142421-A648-4415-8C22-0F73479E0840" Id="FSharpEmptyClassTemplate" DiskId="1">
 
1180
                                                                                        <File Source="..\..\AddIns\BackendBindings\FSharpBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="FSharp.Templates.EmptyClass.xft" KeyPath="yes" />
 
1181
                                                                                </Component>
 
1182
                                                                        </Directory>
 
1183
                                                                </Directory>
 
1184
                                                                <Directory Id="RubyBinding" Name="RubyBinding">
 
1185
                                                                        <Component Guid="7CB6802E-BC09-4796-904C-45EEAD91A5CF" Id="IrExe" DiskId="1">
 
1186
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\ir.exe" Name="ir.exe" Id="ir.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ir.exe" AssemblyManifest="ir.exe" />
 
1187
                                                                        </Component>
 
1188
                                                                        <Component Guid="1CE0CC65-3534-4357-BFB7-CB9F0C4E1495" Id="IronRubyDll" DiskId="1">
 
1189
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\IronRuby.dll" Name="IronRuby.dll" Id="IronRuby.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronRuby.dll" AssemblyManifest="IronRuby.dll" />
 
1190
                                                                        </Component>
 
1191
                                                                        <Component Guid="2B7F1625-2BAA-4A55-B186-75F7ADCF3BA8" Id="IronRubyLibrariesDll" DiskId="1">
 
1192
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\IronRuby.Libraries.dll" Name="IronRuby.Libraries.dll" Id="IronRuby.Libraries.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronRuby.Libraries.dll" AssemblyManifest="IronRuby.Libraries.dll" />
 
1193
                                                                        </Component>
 
1194
                                                                        <Component Guid="626C0C34-EF24-443F-8A0E-6CBF0047A50A" Id="IronRubyLicenseApacheHtml" DiskId="1">
 
1195
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\LICENSE.APACHE.html" Name="LICENSE.APACHE.html" Id="IronRuby.License.Apache.html" KeyPath="yes" />
 
1196
                                                                        </Component>
 
1197
                                                                        <Component Guid="09FCB2E9-FA7E-40B2-8FCF-182C7DF2F5EC" Id="RubyMicrosoftDynamicDll" DiskId="1">
 
1198
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\Microsoft.Dynamic.dll" Name="Microsoft.Dynamic.dll" Id="RubyBinding.Microsoft.Dynamic.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.Microsoft.Dynamic.dll" AssemblyManifest="RubyBinding.Microsoft.Dynamic.dll" />
 
1199
                                                                        </Component>
 
1200
                                                                        <Component Guid="3E1BAAE7-D366-43B4-88CE-8D2ED5731CC6" Id="RubyMicrosoftScriptingDll" DiskId="1">
 
1201
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\Microsoft.Scripting.dll" Name="Microsoft.Scripting.dll" Id="RubyBinding.Microsoft.Scripting.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.Microsoft.Scripting.dll" AssemblyManifest="RubyBinding.Microsoft.Scripting.dll" />
 
1202
                                                                        </Component>
 
1203
                                                                        <Component Guid="6877EFD9-7005-4BDD-80E6-FB4790436E23" Id="RubyBindingAddin" DiskId="1">
 
1204
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\RubyBinding.addin" Name="RubyBinding.addin" Id="RubyBinding.addin" KeyPath="yes" />
 
1205
                                                                        </Component>
 
1206
                                                                        <Component Guid="C1185288-280B-4006-8592-6F4FAD69498D" Id="RubyBindingDll" DiskId="1">
 
1207
                                                                                <File Source="..\..\AddIns\BackendBindings\RubyBinding\RubyBinding.dll" Name="RubyBinding.dll" Id="RubyBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.dll" AssemblyManifest="RubyBinding.dll" />
 
1208
                                                                        </Component>
 
1209
                                                                        <Component Id="RubyMicrosoftScriptingMetadataDll" Guid="43F7B715-2726-4E35-B9AC-28D5B4C33180" DiskId="1">
 
1210
                                                                                <File Id="RubyBinding.Microsoft.Scripting.Metadata.dll" Name="Microsoft.Scripting.Metadata.dll" Source="..\..\AddIns\BackendBindings\RubyBinding\Microsoft.Scripting.Metadata.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.Microsoft.Scripting.Metadata.dll" AssemblyManifest="RubyBinding.Microsoft.Scripting.Metadata.dll" />
 
1211
                                                                        </Component>
 
1212
                                                                        <Directory Id="RubyTemplates" Name="Templates">
 
1213
                                                                                <Component Guid="6BF44E09-3910-444C-9A49-C6C811B41CFE" Id="RubyConsoleProjectTemplate" DiskId="1">
 
1214
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="RubyConsoleProject.xpt" KeyPath="yes" />
 
1215
                                                                                </Component>
 
1216
                                                                                <Component Guid="215E4AF7-C1D3-473F-90A2-A621B42BB2CD" Id="RubyEmptyFileTemplate" DiskId="1">
 
1217
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\Empty.xft" Name="Empty.xft" Id="RubyEmptyFile.xft" KeyPath="yes" />
 
1218
                                                                                </Component>
 
1219
                                                                                <Component Guid="B0D712C8-DCC0-48C6-B0DC-F8D6B7AF6351" Id="RubyEmptyClassFileTemplate" DiskId="1">
 
1220
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="Templates.EmptyClass2.xft" KeyPath="yes" />
 
1221
                                                                                </Component>
 
1222
                                                                                <Component Guid="B11F038D-F71E-409C-AEB9-ED54EBA299F9" Id="RubyEmptyFormFileTemplate" DiskId="1">
 
1223
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyForm.xft" Name="EmptyForm.xft" Id="Templates.EmptyForm.xft" KeyPath="yes" />
 
1224
                                                                                </Component>
 
1225
                                                                                <Component Guid="3F5329F7-72DE-4E44-B36C-F2EF8EED4183" Id="RubyEmptyUserControlFileTemplate" DiskId="1">
 
1226
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyUserControl.xft" Name="EmptyUserControl.xft" Id="Templates.EmptyUserControl.xft" KeyPath="yes" />
 
1227
                                                                                </Component>
 
1228
                                                                                <Component Guid="6096D8DC-E9AE-41D2-82E3-6284E4878545" Id="RubyFormsProjectTemplate" DiskId="1">
 
1229
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\FormsProject.xpt" Name="FormsProject.xpt" Id="Templates.FormsProject1.xpt" KeyPath="yes" />
 
1230
                                                                                </Component>
 
1231
                                                                                <Component Guid="BDB0208E-B04F-42F5-B3FB-97F77D6C4C7B" Id="RubyLibraryProjectTemplate" DiskId="1">
 
1232
                                                                                        <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\LibraryProject.xpt" Name="LibraryProject.xpt" Id="LibraryProject.xpt" KeyPath="yes" />
 
1233
                                                                                </Component>
 
1234
                                                                                <Component Id="RubyWPFApplicationProjectTemplate" Guid="758A30A3-10EF-44A8-BD05-F55043D8CCC5" DiskId="1">
 
1235
                                                                                        <File Id="Ruby.WPFApplication.xpt" Name="WPFApplication.xpt" Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\WPFApplication.xpt" KeyPath="yes" />
 
1236
                                                                                </Component>
 
1237
                                                                                <Component Id="RubyWPFWindowFileTemplate" Guid="F2CD996D-B165-4F30-B70F-33DC1841610D" DiskId="1">
 
1238
                                                                                        <File Id="Ruby.WPFWindow.xft" Name="WPFWindow.xft" Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\WPFWindow.xft" KeyPath="yes" />
 
1239
                                                                                </Component>
 
1240
                                                                                <Component Id="RubySilverlightApplicationProjectTemplate" Guid="8FB9E6F2-4096-4593-9B57-D18D29B1AE1E" DiskId="1">
 
1241
                                                                                        <File Id="Ruby.SilverlightApplication.xpt" Name="SilverlightApplication.xpt" Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\SilverlightApplication.xpt" KeyPath="yes" />
 
1242
                                                                                </Component>
 
1243
                                                                        </Directory>
 
1244
                                                                        <Directory Id="RubyBindingTestRunner" Name="TestRunner">
 
1245
                                                                                <Component Id="RubyBindingSdSelectedTestsFileRb" Guid="8F37FDB9-ED10-4A13-857A-FD0BD7231D13" DiskId="1">
 
1246
                                                                                        <File Id="RubyBinding.sdselectedtestsfile.rb" Name="sdselectedtestsfile.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdselectedtestsfile.rb" KeyPath="yes" />
 
1247
                                                                                </Component>
 
1248
                                                                                <Component Id="RubyBindingSdTestRb" Guid="2666C77A-AB65-4142-AE13-4216FA2E4AAC" DiskId="1">
 
1249
                                                                                        <File Id="RubyBinding.sdtest.rb" Name="sdtest.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtest.rb" KeyPath="yes" />
 
1250
                                                                                </Component>
 
1251
                                                                                <Component Id="RubyBindingSdTestResultRb" Guid="618BB1E1-FCC2-452E-A244-21AD73ED480F" DiskId="1">
 
1252
                                                                                        <File Id="RubyBinding.sdtestresult.rb" Name="sdtestresult.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestresult.rb" KeyPath="yes" />
 
1253
                                                                                </Component>
 
1254
                                                                                <Component Id="RubyBindingSdTestResultWriterRb" Guid="0E12860F-23C3-4A15-85D5-7FFAC0D243FC" DiskId="1">
 
1255
                                                                                        <File Id="RubyBinding.sdtestresultwriter.rb" Name="sdtestresultwriter.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestresultwriter.rb" KeyPath="yes" />
 
1256
                                                                                </Component>
 
1257
                                                                                <Component Id="RubyBindingSdTestRunnerRb" Guid="4F6D3229-6A2F-4505-B0C5-9286853C19AA" DiskId="1">
 
1258
                                                                                        <File Id="RubyBinding.sdtestrunner.rb" Name="sdtestrunner.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestrunner.rb" KeyPath="yes" />
 
1259
                                                                                </Component>
 
1260
                                                                        </Directory>
 
1261
                                                                        <Component Id="RubyChironExe" Guid="2ACC66D7-B47B-4F14-A0D6-7C3737E781C8" DiskId="1">
 
1262
                                                                                <File Id="Ruby.Chiron.exe" Name="Chiron.exe" Source="..\..\AddIns\BackendBindings\RubyBinding\Chiron.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="Ruby.Chiron.exe" AssemblyManifest="Ruby.Chiron.exe" />
 
1263
                                                                        </Component>
 
1264
                                                                        <Component Id="RubyChironExeConfig" Guid="6D992ECC-18C1-492B-BCF7-E61913E1C947" DiskId="1">
 
1265
                                                                                <File Id="Ruby.Chiron.exe.config" Name="Chiron.exe.config" Source="..\..\AddIns\BackendBindings\RubyBinding\Chiron.exe.config" KeyPath="yes" />
 
1266
                                                                        </Component>
 
1267
                                                                </Directory>
 
1268
                                                                <Directory Id="XamlBinding" Name="XamlBinding">
 
1269
                                                                        <Component Guid="34D119F8-F7C8-40DD-B354-FA50A3349033" Id="ICSharpCodeXamlBindingDll" DiskId="1">
 
1270
                                                                                <File Source="..\..\AddIns\BackendBindings\XamlBinding\ICSharpCode.XamlBinding.dll" Name="ICSharpCode.XamlBinding.dll" Id="ICSharpCode.XamlBinding.dll" KeyPath="yes" />
 
1271
                                                                        </Component>
 
1272
                                                                        <Component Guid="4113C6DC-D11B-45FA-9D38-D3DD0A92C280" Id="XamlBindingAddin" DiskId="1">
 
1273
                                                                                <File Source="..\..\AddIns\BackendBindings\XamlBinding\XamlBinding.addin" Name="XamlBinding.addin" Id="XamlBinding.addin" KeyPath="yes" />
 
1274
                                                                        </Component>
 
1275
                                                                </Directory>
 
1276
                                                                <Directory Id="CppBinding" Name="CppBinding">
 
1277
                                                                        <Component Guid="B7C63B27-82B7-42E8-893F-5034CB153074" Id="CppBindingAddin" DiskId="1">
 
1278
                                                                                <File Source="..\..\AddIns\BackendBindings\CppBinding\CppBinding.addin" Name="CppBinding.addin" Id="CppBinding.addin" KeyPath="yes" />
 
1279
                                                                        </Component>
 
1280
                                                                        <Component Guid="AC3EFDF3-3063-464A-9072-1285BAAD3579" Id="CppBindingDll" DiskId="1">
 
1281
                                                                                <File Source="..\..\AddIns\BackendBindings\CppBinding\CppBinding.dll" Name="CppBinding.dll" Id="CppBinding.dll" KeyPath="yes" />
 
1282
                                                                        </Component>
 
1283
                                                                        <Directory Id="CppTemplates" Name="Templates">
 
1284
                                                                                <Component Guid="CD1E49C5-7037-46B0-81CE-41C3E10759E6" Id="CppBindingTemplates" DiskId="1">
 
1285
                                                                                        <File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="ConsoleProject.xpt" KeyPath="yes" />
 
1286
                                                                                        <File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\DefaultAssemblyInfo.cpp" Name="DefaultAssemblyInfo.cpp" Id="DefaultAssemblyInfo.cpp" />
 
1287
                                                                                        <File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\Empty.xft" Name="Empty.xft" Id="Templates.Empty1.xft" />
 
1288
                                                                                        <File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="Templates.EmptyClass1.xft" />
 
1289
                                                                                        <File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\Library.xpt" Name="Library.xpt" Id="Templates.Library.xpt" />
 
1290
                                                                                        <File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\UnmanagedConsoleProject.xpt" Name="UnmanagedConsoleProject.xpt" Id="UnmanagedConsoleProject.xpt" />
 
1291
                                                                                </Component>
 
1292
                                                                        </Directory>
 
1293
                                                                </Directory>
 
1294
                                                        </Directory>
 
1295
                                                        <Directory Id="DisplayBindingsFolder" Name="DisplayBindings">
 
1296
                                                                <Directory Id="FormsDesignerFolder" Name="FormsDesigner">
 
1297
                                                                        <Component Guid="14E454AB-8F83-4FB3-9EDE-92B7D5333998" Id="FormsDesignerFiles" DiskId="1">
 
1298
                                                                                <File Source="..\..\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.dll" Id="FormsDesigner.dll" Name="FormsDesigner.dll" Assembly=".net" AssemblyApplication="FormsDesigner.dll" AssemblyManifest="FormsDesigner.dll" KeyPath="yes" />
 
1299
                                                                                <File Source="..\..\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.addin" Id="FormsDesigner.addin" Name="FormsDesigner.addin" />
 
1300
                                                                        </Component>
 
1301
                                                                </Directory>
 
1302
                                                                <Directory Id="IconEditorFolder" Name="IconEditor">
 
1303
                                                                        <Component Guid="13031705-82B1-46D8-8749-453A6A313A3B" Id="IconEditorExe" DiskId="1">
 
1304
                                                                                <File Source="..\..\AddIns\DisplayBindings\IconEditor\IconEditor.exe" Id="IconEditor.exe" Name="IconEditor.exe" Assembly=".net" AssemblyApplication="IconEditor.exe" AssemblyManifest="IconEditor.exe" KeyPath="yes" />
 
1305
                                                                        </Component>
 
1306
                                                                        <Component Guid="A6F985C3-09A5-4650-9A8E-239BBC737B10" Id="IconEditorAddInFiles" DiskId="1">
 
1307
                                                                                <File Source="..\..\AddIns\DisplayBindings\IconEditor\ICSharpCode.IconEditorAddIn.dll" Id="ICSharpCode.IconEditorAddIn.dll" Name="ICSharpCode.IconEditorAddIn.dll" Assembly=".net" AssemblyApplication="ICSharpCode.IconEditorAddIn.dll" AssemblyManifest="ICSharpCode.IconEditorAddIn.dll" KeyPath="yes" />
 
1308
                                                                                <File Source="..\..\AddIns\DisplayBindings\IconEditor\IconEditorAddIn.addin" Id="IconEditorAddIn.addin" Name="IconEditorAddIn.addin" />
 
1309
                                                                        </Component>
 
1310
                                                                </Directory>
 
1311
                                                                <Directory Id="ResourceEditorFolder" Name="ResourceEditor">
 
1312
                                                                        <Component Guid="010A8620-382C-477B-9330-51A8B6C48A7A" Id="ResourceEditorFiles" DiskId="1">
 
1313
                                                                                <File Source="..\..\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.dll" Id="ResourceEditor.dll" Name="ResourceEditor.dll" Assembly=".net" AssemblyApplication="ResourceEditor.dll" AssemblyManifest="ResourceEditor.dll" KeyPath="yes" />
 
1314
                                                                                <File Source="..\..\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.addin" Id="ResourceEditor.addin" Name="ResourceEditor.addin" />
 
1315
                                                                        </Component>
 
1316
                                                                </Directory>
 
1317
                                                                <Directory Id="XmlEditorFolder" Name="XmlEditor">
 
1318
                                                                        <Component Guid="BD0B4E5B-CBED-49A0-850C-3EA8DFCF3B17" Id="XmlEditorFiles" DiskId="1">
 
1319
                                                                                <File Source="..\..\AddIns\DisplayBindings\XmlEditor\XmlEditor.dll" Id="XmlEditor.dll" Name="XmlEditor.dll" Assembly=".net" AssemblyApplication="XmlEditor.dll" AssemblyManifest="XmlEditor.dll" KeyPath="yes" />
 
1320
                                                                                <File Source="..\..\AddIns\DisplayBindings\XmlEditor\XmlEditor.addin" Id="XmlEditor.addin" Name="XmlEditor.addin" />
 
1321
                                                                        </Component>
 
1322
                                                                </Directory>
 
1323
                                                                <Directory Id="ClassDiagram" Name="ClassDiagram">
 
1324
                                                                        <Directory Id="Resources" Name="Resources">
 
1325
                                                                                <Component Guid="75152D8C-5D9A-4728-AB18-62637C785A7D" Id="ClassDiagramResources" DiskId="1">
 
1326
                                                                                        <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\Resources\Bitmaps.resources" Id="Bitmaps.resources" Name="Bitmaps.resources" />
 
1327
                                                                                </Component>
 
1328
                                                                        </Directory>
 
1329
                                                                        <Component Guid="A8619065-03F6-4AF0-A1F2-81D5C810D8A3" Id="ClassDiagramAddInFiles" DiskId="1">
 
1330
                                                                                <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin.addin" Id="ClassDiagram.ClassDiagramAddin.addin" Name="ClassDiagramAddin.addin" />
 
1331
                                                                                <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin.dll" Id="ClassDiagram.ClassDiagramAddin.dll" Name="ClassDiagramAddin.dll" Assembly=".net" AssemblyApplication="ClassDiagram.ClassDiagramAddin.dll" AssemblyManifest="ClassDiagram.ClassDiagramAddin.dll" KeyPath="yes" />
 
1332
                                                                        </Component>
 
1333
                                                                        <Component Guid="5F09F966-5605-4381-B346-8231DA0B1C6B" Id="ClassCanvasDll" DiskId="1">
 
1334
                                                                                <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassCanvas.dll" Id="ClassDiagram.ClassCanvas.dll" Name="ClassCanvas.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ClassDiagram.ClassCanvas.dll" AssemblyManifest="ClassDiagram.ClassCanvas.dll" />
 
1335
                                                                        </Component>
 
1336
                                                                        <Component Guid="EF2B150B-B0C4-4884-800C-BE904E520CF4" Id="DiagramsDll" DiskId="1">
 
1337
                                                                                <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\Diagrams.dll" Id="ClassDiagram.Diagrams.dll" Name="Diagrams.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ClassDiagram.Diagrams.dll" AssemblyManifest="ClassDiagram.Diagrams.dll" />
 
1338
                                                                        </Component>
 
1339
                                                                </Directory>
 
1340
                                                                <Directory Id="AvalonEdit" Name="AvalonEdit">
 
1341
                                                                        <Component Guid="A3376E4E-F07D-4554-ABF5-E91F2DA918E3" Id="AvalonEditAddInAddin" DiskId="1">
 
1342
                                                                                <File Source="..\..\AddIns\DisplayBindings\AvalonEdit\AvalonEdit.AddIn.addin" Name="AvalonEdit.AddIn.addin" Id="AvalonEdit.AddIn.addin" KeyPath="yes" />
 
1343
                                                                        </Component>
 
1344
                                                                        <Component Guid="28171341-2A36-49DD-ACBC-815EE648A1DA" Id="ICSharpCodeAvalonEditAddInDll" DiskId="1">
 
1345
                                                                                <File Source="..\..\AddIns\DisplayBindings\AvalonEdit\ICSharpCode.AvalonEdit.AddIn.dll" Name="ICSharpCode.AvalonEdit.AddIn.dll" Id="ICSharpCode.AvalonEdit.AddIn.dll" KeyPath="yes" />
 
1346
                                                                        </Component>
 
1347
                                                                </Directory>
 
1348
                                                                <Directory Id="HexEditor" Name="HexEditor">
 
1349
                                                                        <Component Guid="9C299282-1F4C-485B-BEB1-9D84AC4CAA8A" Id="HexEditorAddin" DiskId="1">
 
1350
                                                                                <File Source="..\..\AddIns\DisplayBindings\HexEditor\HexEditor.addin" Name="HexEditor.addin" Id="HexEditor.addin" KeyPath="yes" />
 
1351
                                                                        </Component>
 
1352
                                                                        <Component Guid="1606B107-445F-4233-B72A-D4546A8393BC" Id="HexEditorDll" DiskId="1">
 
1353
                                                                                <File Source="..\..\AddIns\DisplayBindings\HexEditor\HexEditor.dll" Name="HexEditor.dll" Id="HexEditor.dll" KeyPath="yes" />
 
1354
                                                                        </Component>
 
1355
                                                                </Directory>
 
1356
                                                                <Directory Id="WpfDesign" Name="WpfDesign">
 
1357
                                                                        <Component Guid="E529AC6C-30BE-4406-9F26-B55CAA110D3F" Id="ICSharpCodeWpfDesignAddInDll" DiskId="1">
 
1358
                                                                                <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.AddIn.dll" Name="ICSharpCode.WpfDesign.AddIn.dll" Id="ICSharpCode.WpfDesign.AddIn.dll" KeyPath="yes" />
 
1359
                                                                        </Component>
 
1360
                                                                        <Component Guid="1147F468-F5DC-49D3-9CFC-EE794FC7BBC5" Id="ICSharpCodeWpfDesignDesignerDll" DiskId="1">
 
1361
                                                                                <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.Designer.dll" Name="ICSharpCode.WpfDesign.Designer.dll" Id="ICSharpCode.WpfDesign.Designer.dll" KeyPath="yes" />
 
1362
                                                                        </Component>
 
1363
                                                                        <Component Guid="C454357F-4ED8-424A-8F6A-0652EC8A0AB8" Id="ICSharpCodeWpfDesignDll" DiskId="1">
 
1364
                                                                                <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.dll" Name="ICSharpCode.WpfDesign.dll" Id="ICSharpCode.WpfDesign.dll" KeyPath="yes" />
 
1365
                                                                        </Component>
 
1366
                                                                        <Component Guid="DADDFB3A-A7AE-4D28-BFD6-294ECDFD9D3B" Id="ICSharpCodeWpfDesignXamlDomDll" DiskId="1">
 
1367
                                                                                <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.XamlDom.dll" Name="ICSharpCode.WpfDesign.XamlDom.dll" Id="ICSharpCode.WpfDesign.XamlDom.dll" KeyPath="yes" />
 
1368
                                                                        </Component>
 
1369
                                                                        <Component Guid="E89BBA3D-D267-4E4F-8DA7-E38E864C4317" Id="WpfDesignAddin" DiskId="1">
 
1370
                                                                                <File Source="..\..\AddIns\DisplayBindings\WpfDesign\WpfDesign.addin" Name="WpfDesign.addin" Id="WpfDesign.addin" KeyPath="yes" />
 
1371
                                                                        </Component>
 
1372
                                                                </Directory>
 
1373
                                                                <Directory Id="Data" Name="Data">
 
1374
                                                                        <Component Guid="16E65D48-658D-4C6B-BCCB-9B5450727CFD" Id="ICSharpCodeDataAddin" DiskId="1">
 
1375
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.addin" Name="ICSharpCode.Data.addin" Id="ICSharpCode.Data.addin" KeyPath="yes" />
 
1376
                                                                        </Component>
 
1377
                                                                        <Component Guid="03DE504B-1757-49CD-A3FC-BAC7210F3565" Id="ICSharpCodeDataAddinDll" DiskId="1">
 
1378
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Addin.dll" Name="ICSharpCode.Data.Addin.dll" Id="ICSharpCode.Data.Addin.dll" KeyPath="yes" />
 
1379
                                                                        </Component>
 
1380
                                                                        <Component Guid="48BC48FD-D6C4-471B-A19A-52EC48FDADF3" Id="ICSharpCodeDataCoreDll" DiskId="1">
 
1381
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Core.dll" Name="ICSharpCode.Data.Core.dll" Id="ICSharpCode.Data.Core.dll" KeyPath="yes" />
 
1382
                                                                        </Component>
 
1383
                                                                        <Component Guid="FAE360BA-DA88-41E8-A5C7-1DA41E98B8F2" Id="ICSharpCodeDataCoreUIDll" DiskId="1">
 
1384
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Core.UI.dll" Name="ICSharpCode.Data.Core.UI.dll" Id="ICSharpCode.Data.Core.UI.dll" KeyPath="yes" />
 
1385
                                                                        </Component>
 
1386
                                                                        <Component Guid="AC3788E8-6068-46BA-94E0-FE17B9D057A9" Id="ICSharpCodeDataEDMDesignerCoreDll" DiskId="1">
 
1387
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.EDMDesigner.Core.dll" Name="ICSharpCode.Data.EDMDesigner.Core.dll" Id="ICSharpCode.Data.EDMDesigner.Core.dll" KeyPath="yes" />
 
1388
                                                                        </Component>
 
1389
                                                                        <Component Guid="D41C8A90-0CD0-4160-9172-1DBE3B55902D" Id="ICSharpCodeDataEDMDesignerCoreUIDll" DiskId="1">
 
1390
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.EDMDesigner.Core.UI.dll" Name="ICSharpCode.Data.EDMDesigner.Core.UI.dll" Id="ICSharpCode.Data.EDMDesigner.Core.UI.dll" KeyPath="yes" />
 
1391
                                                                        </Component>
 
1392
                                                                        <Component Guid="31400415-BB2A-49C9-90DF-58F7FD0A8154" Id="ICSharpCodeDataSQLServerDll" DiskId="1">
 
1393
                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.SQLServer.dll" Name="ICSharpCode.Data.SQLServer.dll" Id="ICSharpCode.Data.SQLServer.dll" KeyPath="yes" />
 
1394
                                                                        </Component>
 
1395
                                                                        <Directory Id="DataTemplates" Name="Templates">
 
1396
                                                                                <Directory Id="Files" Name="Files">
 
1397
                                                                                        <Component Guid="2791081B-A45D-4729-952C-43C147753653" Id="CSharpEDMXXft" DiskId="1">
 
1398
                                                                                                <File Source="..\..\AddIns\DisplayBindings\Data\Templates\Files\CSharp.EDMX.xft" Name="CSharp.EDMX.xft" Id="CSharp.EDMX.xft" KeyPath="yes" />
 
1399
                                                                                        </Component>
 
1400
                                                                                </Directory>
 
1401
                                                                        </Directory>
 
1402
                                                                </Directory>
 
1403
                                                                <Directory Id="SettingsEditor" Name="SettingsEditor">
 
1404
                                                                        <Component Id="SettingsEditorFiles" Guid="4A12129A-6BB5-4CC7-A105-C1F6FDF345F2" DiskId="1">
 
1405
                                                                                <File Id="SettingsEditor.dll" Name="SettingsEditor.dll" Source="..\..\AddIns\DisplayBindings\SettingsEditor\SettingsEditor.dll" KeyPath="yes" />
 
1406
                                                                                <File Id="SettingsEditor.addin" Name="SettingsEditor.addin" Source="..\..\AddIns\DisplayBindings\SettingsEditor\SettingsEditor.addin" />
 
1407
                                                                                <File Id="EmptySettingsFile.xft" Name="EmptySettingsFile.xft" Source="..\..\AddIns\DisplayBindings\SettingsEditor\EmptySettingsFile.xft" />
 
1408
                                                                        </Component>
 
1409
                                                                </Directory>
 
1410
                                                        </Directory>
 
1411
                                                        <Directory Id="DebuggerFolder" Name="Debugger">
 
1412
                                                                <Component Guid="27C66A5A-0149-45F4-B1AF-C320FE005E6B" Id="DebuggerAddInFiles" DiskId="1">
 
1413
                                                                        <File Source="..\..\AddIns\Debugger\Debugger.AddIn.addin" Id="Debugger.AddIn.addin" Name="Debugger.AddIn.addin" />
 
1414
                                                                        <File Source="..\..\AddIns\Debugger\Debugger.AddIn.dll" Id="Debugger.AddIn.dll" Name="Debugger.AddIn.dll" />
 
1415
                                                                        <File Source="..\..\AddIns\Debugger\Debugger.Core.dll" Id="Debugger.Core.dll" Name="Debugger.Core.dll" />
 
1416
                                                                </Component>
 
1417
                                                        </Directory>
 
1418
                                                        <Directory Id="MiscAddInsFolder" Name="Misc">
 
1419
                                                                <Directory Id="AddInManagerFolder" Name="AddInManager">
 
1420
                                                                        <Component Guid="AA44E205-CCE8-46F3-B84B-D031BDB3570D" Id="AddInManagerSharpZipLibDll" DiskId="1">
 
1421
                                                                                <File Source="..\..\AddIns\Misc\AddInManager\ICSharpCode.SharpZipLib.dll" Id="ICSharpCode.SharpZipLib.dll" Name="ICSharpCode.SharpZipLib.dll" Assembly=".net" AssemblyApplication="ICSharpCode.SharpZipLib.dll" AssemblyManifest="ICSharpCode.SharpZipLib.dll" KeyPath="yes" />
 
1422
                                                                        </Component>
 
1423
                                                                        <Component Guid="DCC79FDD-A759-4CEE-A62E-C715738ABB9A" Id="AddInManagerFiles" DiskId="1">
 
1424
                                                                                <File Source="..\..\AddIns\Misc\AddInManager\AddInManager.addin" Id="AddInManager.addin" Name="AddInManager.addin" />
 
1425
                                                                                <File Source="..\..\AddIns\Misc\AddInManager\ICSharpCode.AddInManager.dll" Id="ICSharpCode.AddInManager.dll" Name="ICSharpCode.AddInManager.dll" Assembly=".net" AssemblyApplication="ICSharpCode.AddInManager.dll" AssemblyManifest="ICSharpCode.AddInManager.dll" KeyPath="yes" />
 
1426
                                                                        </Component>
 
1427
                                                                </Directory>
 
1428
                                                                <Directory Id="AddInScoutFolder" Name="AddinScout">
 
1429
                                                                        <Component Guid="815D3708-5A0A-4B8E-BB72-66DF8E851917" Id="AddInScoutFiles" DiskId="1">
 
1430
                                                                                <File Source="..\..\AddIns\Misc\AddinScout\AddinScout.dll" Id="AddinScout.dll" Name="AddinScout.dll" Assembly=".net" AssemblyApplication="AddinScout.dll" AssemblyManifest="AddinScout.dll" KeyPath="yes" />
 
1431
                                                                                <File Source="..\..\AddIns\Misc\AddinScout\AddInScout.addin" Id="AddInScout.addin" Name="AddInScout.addin" />
 
1432
                                                                        </Component>
 
1433
                                                                </Directory>
 
1434
                                                                <Directory Id="FiletypeRegistererFolder" Name="FiletypeRegisterer">
 
1435
                                                                        <Directory Id="FileTypesFolder" Name="filetypes">
 
1436
                                                                                <Component Guid="389BF494-9AE6-476A-A0FE-39DB0CFE95D1" Id="FiletypeIcons" DiskId="1">
 
1437
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\xml.ico" Name="xml.ico" Id="xml.ico" />
 
1438
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\addin.ico" Name="addin.ico" Id="addin.ico" />
 
1439
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\cmbx.ico" Name="cmbx.ico" Id="cmbx.ico" />
 
1440
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\cs.ico" Name="cs.ico" Id="cs.ico" />
 
1441
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\java.ico" Name="java.ico" Id="java.ico" />
 
1442
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\prjx.ico" Name="prjx.ico" Id="prjx.ico" />
 
1443
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\resx.ico" Name="resx.ico" Id="resx.ico" />
 
1444
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\vb.ico" Name="vb.ico" Id="vb.ico" />
 
1445
                                                                                        <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\xfrm.ico" Name="xfrm.ico" Id="xfrm.ico" />
 
1446
                                                                                </Component>
 
1447
                                                                        </Directory>
 
1448
                                                                        <Component Guid="6FF1EF46-B5FF-444D-879F-0E56640CABD7" Id="FiletypeRegistererFiles" DiskId="1">
 
1449
                                                                                <File Source="..\..\AddIns\Misc\FiletypeRegisterer\ICSharpCode.FiletypeRegisterer.dll" Id="ICSharpCode.FiletypeRegisterer.dll" Name="ICSharpCode.FiletypeRegisterer.dll" Assembly=".net" AssemblyApplication="ICSharpCode.FiletypeRegisterer.dll" AssemblyManifest="ICSharpCode.FiletypeRegisterer.dll" KeyPath="yes" />
 
1450
                                                                                <File Source="..\..\AddIns\Misc\FiletypeRegisterer\FiletypeRegisterer.addin" Id="FiletypeRegisterer.addin" Name="FiletypeRegisterer.addin" />
 
1451
                                                                        </Component>
 
1452
                                                                </Directory>
 
1453
                                                                <Directory Id="HelpViewerFolder" Name="HelpViewer">
 
1454
                                                                        <Component Guid="C854C30E-1765-4614-8248-F256C761CEE3" Id="HtmlHelp2Files" DiskId="1">
 
1455
                                                                                <File Source="..\..\AddIns\Misc\HelpViewer\HelpViewer.addin" Id="HelpViewer.addin" Name="HelpViewer.addin" />
 
1456
                                                                                <File Source="..\..\AddIns\Misc\HelpViewer\HelpViewer.dll" Id="HelpViewer.dll" Name="HelpViewer.dll" />
 
1457
                                                                        </Component>
 
1458
                                                                </Directory>
 
1459
                                                                <Directory Id="PInvokeAddInFolder" Name="PInvokeAddIn">
 
1460
                                                                        <Component Guid="09DC988A-373E-4147-BA35-AF6BF0047B1A" Id="PInvokeAddInFiles" DiskId="1">
 
1461
                                                                                <File Source="..\..\AddIns\Misc\PInvokeAddIn\signatures.xml" Id="signatures.xml" Name="signatures.xml" />
 
1462
                                                                                <File Source="..\..\AddIns\Misc\PInvokeAddIn\PInvoke.addin" Id="PInvoke.addin" Name="PInvoke.addin" />
 
1463
                                                                                <File Source="..\..\AddIns\Misc\PInvokeAddIn\PInvokeAddIn.dll" Id="PInvokeAddIn.dll" Name="PInvokeAddIn.dll" Assembly=".net" AssemblyApplication="PInvokeAddIn.dll" AssemblyManifest="PInvokeAddIn.dll" KeyPath="yes" />
 
1464
                                                                        </Component>
 
1465
                                                                </Directory>
 
1466
                                                                <Directory Id="RegExToolkitFolder" Name="RegExpTk">
 
1467
                                                                        <Component Guid="B934ABC3-AD9B-4DC3-B0EE-1CA5AF2B8F82" Id="RegExToolkitFiles" DiskId="1">
 
1468
                                                                                <File Source="..\..\AddIns\Misc\RegExpTk\RegExpTk.addin" Id="RegExpTk.addin" Name="RegExpTk.addin" />
 
1469
                                                                                <File Source="..\..\AddIns\Misc\RegExpTk\RegExpTk.dll" Name="RegExpTk.dll" Id="RegExpTk.dll" Assembly=".net" AssemblyApplication="RegExpTk.dll" AssemblyManifest="RegExpTk.dll" KeyPath="yes" />
 
1470
                                                                        </Component>
 
1471
                                                                </Directory>
 
1472
                                                                <Directory Id="ResourceToolkitFolder" Name="ResourceToolkit">
 
1473
                                                                        <Component Guid="E36C699F-353D-41CC-975B-E18BEB885BA0" Id="ResourceToolkitFiles" DiskId="1">
 
1474
                                                                                <File Source="..\..\AddIns\Misc\ResourceToolkit\Hornung.ResourceToolkit.addin" Id="Hornung.ResourceToolkit.addin" Name="Hornung.ResourceToolkit.addin" />
 
1475
                                                                                <File Source="..\..\AddIns\Misc\ResourceToolkit\Hornung.ResourceToolkit.dll" Id="Hornung.ResourceToolkit.dll" Name="Hornung.ResourceToolkit.dll" Assembly=".net" AssemblyApplication="Hornung.ResourceToolkit.dll" AssemblyManifest="Hornung.ResourceToolkit.dll" KeyPath="yes" />
 
1476
                                                                        </Component>
 
1477
                                                                </Directory>
 
1478
                                                                <Directory Id="StartPageAddInFolder" Name="StartPage">
 
1479
                                                                        <Component Guid="220967E5-D5AA-4207-9757-79599222D5CF" Id="StartPageAddInFiles" DiskId="1">
 
1480
                                                                                <File Source="..\..\AddIns\Misc\StartPage\StartPage.dll" Id="StartPage.dll" Name="StartPage.dll" Assembly=".net" AssemblyApplication="StartPage.dll" AssemblyManifest="StartPage.dll" KeyPath="yes" />
 
1481
                                                                                <File Source="..\..\AddIns\Misc\StartPage\StartPage.addin" Id="StartPage.addin" Name="StartPage.addin" />
 
1482
                                                                        </Component>
 
1483
                                                                </Directory>
 
1484
                                                                <Directory Id="SearchAndReplace" Name="SearchAndReplace">
 
1485
                                                                        <Component Guid="A76D4EB6-0EBB-49D7-9528-2FA87C983703" Id="SearchAndReplaceFiles" DiskId="1">
 
1486
                                                                                <File Source="..\..\AddIns\Misc\SearchAndReplace\SearchAndReplace.addin" Id="SearchAndReplace.addin" Name="SearchAndReplace.addin" />
 
1487
                                                                                <File Source="..\..\AddIns\Misc\SearchAndReplace\SearchAndReplace.dll" Id="SearchAndReplace.dll" Name="SearchAndReplace.dll" />
 
1488
                                                                        </Component>
 
1489
                                                                </Directory>
 
1490
                                                                <Directory Id="SharpRefactoring" Name="SharpRefactoring">
 
1491
                                                                        <Component Guid="BCC6D49B-5CC9-4B5D-80DE-A70E90E67ABD" Id="SharpRefactoringAddin" DiskId="1">
 
1492
                                                                                <File Source="..\..\AddIns\Misc\SharpRefactoring\SharpRefactoring.addin" Name="SharpRefactoring.addin" Id="SharpRefactoring.addin" KeyPath="yes" />
 
1493
                                                                        </Component>
 
1494
                                                                        <Component Guid="F944B0F5-14EC-4DED-A7BE-BDE9299B19A6" Id="SharpRefactoringDll" DiskId="1">
 
1495
                                                                                <File Source="..\..\AddIns\Misc\SharpRefactoring\SharpRefactoring.dll" Name="SharpRefactoring.dll" Id="SharpRefactoring.dll" KeyPath="yes" />
 
1496
                                                                        </Component>
 
1497
                                                                </Directory>
 
1498
                                                                <Directory Id="Profiler" Name="Profiler">
 
1499
                                                                        <Component Guid="C46A4B2C-D5DE-4548-B4A9-4B0AB8C105F3" Id="Hook32Dll" DiskId="1">
 
1500
                                                                                <File Source="..\..\AddIns\Misc\Profiler\Hook32.dll" Name="Hook32.dll" Id="Hook32.dll" KeyPath="yes" />
 
1501
                                                                        </Component>
 
1502
                                                                        <Component Guid="AC57D4D8-C5CE-4905-BB9E-D7DD2E1F218B" Id="Hook64Dll" DiskId="1">
 
1503
                                                                                <File Source="..\..\AddIns\Misc\Profiler\Hook64.dll" Name="Hook64.dll" Id="Hook64.dll" KeyPath="yes" />
 
1504
                                                                        </Component>
 
1505
                                                                        <Component Guid="FFFF6CFB-4C20-4934-85CA-51EE4BBAB219" Id="ICSharpCodeProfilerAddInAddin" DiskId="1">
 
1506
                                                                                <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.AddIn.addin" Name="ICSharpCode.Profiler.AddIn.addin" Id="ICSharpCode.Profiler.AddIn.addin" KeyPath="yes" />
 
1507
                                                                        </Component>
 
1508
                                                                        <Component Guid="39658202-7209-4C48-BD2F-426B5115C640" Id="ICSharpCodeProfilerAddInDll" DiskId="1">
 
1509
                                                                                <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.AddIn.dll" Name="ICSharpCode.Profiler.AddIn.dll" Id="ICSharpCode.Profiler.AddIn.dll" KeyPath="yes" />
 
1510
                                                                        </Component>
 
1511
                                                                        <Component Guid="A4130504-0AB7-4ACA-BC43-61BBD2D88415" Id="ICSharpCodeProfilerControllerDll" DiskId="1">
 
1512
                                                                                <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.Controller.dll" Name="ICSharpCode.Profiler.Controller.dll" Id="ICSharpCode.Profiler.Controller.dll" KeyPath="yes" />
 
1513
                                                                        </Component>
 
1514
                                                                        <Component Guid="AF6BA5E6-0EF1-40D4-B78A-D97100F57E0F" Id="ICSharpCodeProfilerControlsDll" DiskId="1">
 
1515
                                                                                <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.Controls.dll" Name="ICSharpCode.Profiler.Controls.dll" Id="ICSharpCode.Profiler.Controls.dll" KeyPath="yes" />
 
1516
                                                                        </Component>
 
1517
                                                                        <Component Guid="30373CF2-3D49-41E1-987F-5C870531FB75" Id="SystemDataSQLiteDll" DiskId="1">
 
1518
                                                                                <File Source="..\..\AddIns\Misc\Profiler\System.Data.SQLite.dll" Name="System.Data.SQLite.dll" Id="Profiler.System.Data.SQLite.dll" KeyPath="yes" />
 
1519
                                                                        </Component>
 
1520
                                                                        <Component Guid="E1C27BD1-4FEA-4CAA-884F-1FD93D861426" Id="IQToolkitDll" DiskId="1">
 
1521
                                                                                <File Source="..\..\AddIns\Misc\Profiler\IQToolkit.dll" Name="IQToolkit.dll" Id="IQToolkit.dll" KeyPath="yes" />
 
1522
                                                                        </Component>
 
1523
                                                                </Directory>
 
1524
                                                                <Directory Id="UsageDataCollector" Name="UsageDataCollector">
 
1525
                                                                        <Component Guid="952BD2C8-F477-4C87-A869-80E4B5E955D6" Id="UDCSystemDataSQLiteDll" DiskId="1">
 
1526
                                                                                <File Source="..\..\AddIns\Misc\UsageDataCollector\System.Data.SQLite.dll" Name="System.Data.SQLite.dll" Id="UDC.System.Data.SQLite.dll" KeyPath="yes" />
 
1527
                                                                        </Component>
 
1528
                                                                        <Component Guid="F0D830A5-C1AE-43E4-B74C-CF78B7E8A849" Id="UsageDataCollectorAddin" DiskId="1">
 
1529
                                                                                <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.addin" Name="UsageDataCollector.addin" Id="UsageDataCollector.addin" />
 
1530
                                                                                <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.AddIn.dll" Name="UsageDataCollector.AddIn.dll" Id="UsageDataCollector.AddIn.dll" KeyPath="yes" />
 
1531
                                                                        </Component>
 
1532
                                                                        <Component Guid="BDFB1DDB-E4AD-4D20-B7C1-21EDDEF33943" Id="UsageDataCollectorDll" DiskId="1">
 
1533
                                                                                <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.dll" Name="UsageDataCollector.dll" Id="UsageDataCollector.dll" KeyPath="yes" />
 
1534
                                                                                <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.xml" Name="UsageDataCollector.xml" Id="UsageDataCollector.xml" />
 
1535
                                                                        </Component>
 
1536
                                                                </Directory>
 
1537
                                                                <Directory Id="SharpDevelopReports" Name="SharpDevelopReports">
 
1538
                                                                        <Component Guid="9D0B24E0-6BE3-4E0A-AE50-DFF55BAE388F" Id="SharpDevelopReportsEmptyReportFileTemplate" DiskId="1">
 
1539
                                                                                <File Source="..\..\AddIns\Misc\SharpDevelopReports\EmptyReport.xft" Name="EmptyReport.xft" Id="SharpDevelopReportsEmptyReport.xft" KeyPath="yes" />
 
1540
                                                                        </Component>
 
1541
                                                                        <Component Guid="70F6CB6E-5776-4157-BABB-1D01960CFD42" Id="ICSharpCodeReportDesignerAddin" DiskId="1">
 
1542
                                                                                <File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.ReportDesigner.addin" Name="ICSharpCode.ReportDesigner.addin" Id="ICSharpCode.ReportDesigner.addin" KeyPath="yes" />
 
1543
                                                                        </Component>
 
1544
                                                                        <Component Guid="368CD4A5-70EA-4374-AF4E-A4328DE66680" Id="ICSharpCodeReportsAddinDll" DiskId="1">
 
1545
                                                                                <File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.Reports.Addin.dll" Name="ICSharpCode.Reports.Addin.dll" Id="ICSharpCode.Reports.Addin.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.Reports.Addin.dll" AssemblyManifest="ICSharpCode.Reports.Addin.dll" />
 
1546
                                                                        </Component>
 
1547
                                                                        <Component Guid="0836040D-7E4A-42CA-A291-BE8AAB207D29" Id="ICSharpCodeReportsCoreDll" DiskId="1">
 
1548
                                                                                <File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.Reports.Core.dll" Name="ICSharpCode.Reports.Core.dll" Id="ICSharpCode.Reports.Core.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.Reports.Core.dll" AssemblyManifest="ICSharpCode.Reports.Core.dll" />
 
1549
                                                                        </Component>
 
1550
                                                                        <Component Guid="DBF1DA4F-19BA-46AF-86A4-B3228424F219" Id="IronyDll" DiskId="1">
 
1551
                                                                                <File Source="..\..\AddIns\Misc\SharpDevelopReports\Irony.dll" Name="Irony.dll" Id="Irony.dll" KeyPath="yes" />
 
1552
                                                                        </Component>
 
1553
                                                                        <Component Guid="A105D4E4-2AF4-43BE-AA71-15F14DA4163B" Id="ITextSharpDll" DiskId="1">
 
1554
                                                                                <File Source="..\..\AddIns\Misc\SharpDevelopReports\itextsharp.dll" Name="itextsharp.dll" Id="itextsharp.dll" KeyPath="yes" />
 
1555
                                                                        </Component>
 
1556
                                                                </Directory>
 
1557
                                                                <Directory Id="ILSpyAddIn" Name="ILSpyAddIn">
 
1558
                                                                        <Component Id="ILSpyAddInFiles" Guid="F1422563-5927-4D98-B4D4-33FE5576C665" DiskId="1">
 
1559
                                                                                <File Id="ILSpyAddIn.dll" Name="ILSpyAddIn.dll" Source="..\..\AddIns\Misc\ILSpyAddIn\ILSpyAddIn.dll" KeyPath="yes" />
 
1560
                                                                                <File Id="ILSpyAddIn.addin" Name="ILSpyAddIn.addin" Source="..\..\AddIns\Misc\ILSpyAddIn\ILSpyAddIn.addin" />
 
1561
                                                                        </Component>
 
1562
                                                                </Directory>
 
1563
                                                                <Directory Id="PackageManagement" Name="PackageManagement">
 
1564
                                                                        <Component Id="NuGetCoreDll" Guid="AA347D26-712F-4BF7-BB74-517F6BFC563F" DiskId="1">
 
1565
                                                                                <File Id="NuGet.Core.dll" Name="NuGet.Core.dll" Source="..\..\AddIns\Misc\PackageManagement\NuGet.Core.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="NuGet.Core.dll" AssemblyManifest="NuGet.Core.dll" />
 
1566
                                                                        </Component>
 
1567
                                                                        <Component Id="NuGetLicenseTxt" Guid="9927896C-A240-4A12-A3D7-EF67E90E87B7" DiskId="1">
 
1568
                                                                                <File Id="NuGetLicense.txt" Name="NuGet-LICENSE.txt" Source="..\..\AddIns\Misc\PackageManagement\NuGet-LICENSE.txt" KeyPath="yes" />
 
1569
                                                                        </Component>
 
1570
                                                                        <Component Id="PackageManagementAddin" Guid="653F3DA0-90AD-40E6-86C7-364DCD63C798" DiskId="1">
 
1571
                                                                                <File Id="PackageManagement.addin" Name="PackageManagement.addin" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.addin" KeyPath="yes" />
 
1572
                                                                        </Component>
 
1573
                                                                        <Component Id="PackageManagementDll" Guid="24C9BEEB-0B51-42F9-A3FA-C4830B28BABD" DiskId="1">
 
1574
                                                                                <File Id="PackageManagement.dll" Name="PackageManagement.dll" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.dll" AssemblyManifest="PackageManagement.dll" />
 
1575
                                                                        </Component>
 
1576
                                                                        <Component Id="AboutNuGetCmdletsHelpTxt" Guid="9A761C90-C10B-4E69-A0C3-6E417CBBAE94" DiskId="1">
 
1577
                                                                                <File Id="about_NuGet.Cmdlets.help.txt" Name="about_NuGet.Cmdlets.help.txt" Source="..\..\AddIns\Misc\PackageManagement\about_NuGet.Cmdlets.help.txt" KeyPath="yes" />
 
1578
                                                                        </Component>
 
1579
                                                                        <Component Id="PackageManagementCmdletsDll" Guid="BAFE4038-7ADC-4E67-A73E-BA335860168E" DiskId="1">
 
1580
                                                                                <File Id="PackageManagement.Cmdlets.dll" Name="PackageManagement.Cmdlets.dll" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.Cmdlets.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.Cmdlets.dll" AssemblyManifest="PackageManagement.Cmdlets.dll" />
 
1581
                                                                        </Component>
 
1582
                                                                        <Component Id="PackageManagementCmdletsDllHelpXml" Guid="636FB699-BD74-48E6-8272-38CBA5E64852" DiskId="1">
 
1583
                                                                                <File Id="PackageManagement.Cmdlets.dll_Help.xml" Name="PackageManagement.Cmdlets.dll-Help.xml" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.Cmdlets.dll-Help.xml" KeyPath="yes" />
 
1584
                                                                        </Component>
 
1585
                                                                        <Directory Id="PackageManagementScriptsFolder" Name="Scripts">
 
1586
                                                                                <Component Id="PackageFormatPs1Xml" Guid="1C940A6A-5AF2-4E83-84AD-78DB38F763AC" DiskId="1">
 
1587
                                                                                        <File Id="Package.Format.ps1xml" Name="Package.Format.ps1xml" Source="..\..\AddIns\Misc\PackageManagement\Scripts\Package.Format.ps1xml" KeyPath="yes" />
 
1588
                                                                                </Component>
 
1589
                                                                        </Directory>
 
1590
                                                                        <Component Id="PackageManagementPowerShellDll" Guid="78A57EFC-EB7D-4982-A6DA-42F061BCA2D2" DiskId="1">
 
1591
                                                                                <File Id="PackageManagement.PowerShell.dll" Name="PackageManagement.PowerShell.dll" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.PowerShell.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.PowerShell.dll" AssemblyManifest="PackageManagement.PowerShell.dll" />
 
1592
                                                                        </Component>
 
1593
                                                                </Directory>
 
1594
                                                                <Directory Id="TextTemplating" Name="TextTemplating">
 
1595
                                                                        <Component Id="MonoTextTemplatingDll" Guid="07BFBED7-FC7B-4CF3-BD00-DCA8E8E7C17B" DiskId="1">
 
1596
                                                                                <File Id="Mono.TextTemplating.dll" Name="Mono.TextTemplating.dll" Source="..\..\AddIns\Misc\TextTemplating\Mono.TextTemplating.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Mono.TextTemplating.dll" AssemblyManifest="Mono.TextTemplating.dll" />
 
1597
                                                                        </Component>
 
1598
                                                                        <Component Id="TextTemplatingAddin" Guid="4641009D-3B33-4D5D-8910-48543211BAD1" DiskId="1">
 
1599
                                                                                <File Id="TextTemplating.addin" Name="TextTemplating.addin" Source="..\..\AddIns\Misc\TextTemplating\TextTemplating.addin" KeyPath="yes" />
 
1600
                                                                        </Component>
 
1601
                                                                        <Component Id="TextTemplatingDll" Guid="EB7774C9-9C60-46F5-95C1-17D86E743F83" DiskId="1">
 
1602
                                                                                <File Id="TextTemplating.dll" Name="TextTemplating.dll" Source="..\..\AddIns\Misc\TextTemplating\TextTemplating.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="TextTemplating.dll" AssemblyManifest="TextTemplating.dll" />
 
1603
                                                                        </Component>
 
1604
                                                                        <Directory Id="TextTemplatingTemplates" Name="Templates">
 
1605
                                                                                <Component Id="CSharpTextTemplateFileTemplate" Guid="D271B972-2CBB-4615-9D35-23F75969CA9B" DiskId="1">
 
1606
                                                                                        <File Id="CSharp.TextTemplate.xft" Name="CSharp.TextTemplate.xft" Source="..\..\AddIns\Misc\TextTemplating\Templates\CSharp.TextTemplate.xft" KeyPath="yes" />
 
1607
                                                                                </Component>
 
1608
                                                                                <Component Id="VBTextTemplateFileTemplate" Guid="21E9FFAB-491C-48A4-BD3D-41E596C50D66" DiskId="1">
 
1609
                                                                                        <File Id="VB.TextTemplate.xft" Name="VB.TextTemplate.xft" Source="..\..\AddIns\Misc\TextTemplating\Templates\VB.TextTemplate.xft" KeyPath="yes" />
 
1610
                                                                                </Component>
 
1611
                                                                        </Directory>
 
1612
                                                                </Directory>
 
1613
                                                        </Directory>
 
1614
                                                        <Directory Id="VersionControlAddInsFolder" Name="VersionControl">
 
1615
                                                                <Directory Id="SubversionAddInFolder" Name="SubversionAddIn">
 
1616
                                                                        <Component Guid="C9B1D523-5674-4398-9073-20F57B45DD46" Id="SubversionAddInDll" DiskId="1">
 
1617
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\SubversionAddIn.dll" Id="SubversionAddIn.dll" Name="SubversionAddIn.dll" Assembly=".net" AssemblyApplication="SubversionAddIn.dll" AssemblyManifest="SubversionAddIn.dll" KeyPath="yes" />
 
1618
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\ICSharpCode.Svn.addin" Id="ICSharpCode.Svn.addin" Name="ICSharpCode.Svn.addin" />
 
1619
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpSvn.dll" Name="SharpSvn.dll" Id="SharpSvn.dll" />
 
1620
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpSvn.UI.dll" Name="SharpSvn.UI.dll" Id="SharpSvn.UI.dll" />
 
1621
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpPlink-Win32.svnExe" Name="SharpPlink-Win32.svnExe" Id="SharpPlink_Win32.svnExe" />
 
1622
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpSvn-DB44-20-Win32.dll" Name="SharpSvn-DB44-20-Win32.dll" Id="SharpSvn_DB44_20_Win32.dll" />
 
1623
                                                                                <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpSvn-SASL21-23-Win32.dll" Name="SharpSvn-SASL21-23-Win32.dll" Id="SharpSvn_SASL21_23_Win32.dll" />
 
1624
                                                                        </Component>
 
1625
                                                                </Directory>
 
1626
                                                                <Component Id="GitAddInDll" Guid="4AB2E967-7267-42F7-AED1-AB64809F0BC1" DiskId="1">
 
1627
                                                                        <File Id="GitAddIn.dll" Name="GitAddIn.dll" Source="..\..\AddIns\VersionControl\GitAddIn.dll" KeyPath="yes" />
 
1628
                                                                        <File Id="GitAddIn.addin" Name="GitAddIn.addin" Source="..\..\AddIns\VersionControl\GitAddIn.addin" />
 
1629
                                                                </Component>
 
1630
                                                        </Directory>
 
1631
                                                </Directory>
 
1632
                                                <Component Guid="542E5AE1-286C-4CE6-8800-F3AFBB24531D" Id="SharpDevelopWebsiteShortcut" DiskId="1">
 
1633
                                                        <!--
 
1634
                                                                The choice here is to either useW the IniFile element to
 
1635
                                                                generate the two website shortcuts or create a 
 
1636
                                                                SharpDevelop.url file on disk and use a File element and
 
1637
                                                                link to the file instead. We will use a file otherwise an
 
1638
                                                                upgrade will not remove the existing website shortcut.
 
1639
                                                        -->
 
1640
                                                        <File Id="SharpDevelop.url" KeyPath="yes" Name="SharpDevelop.url" Source="Files\SharpDevelop.url" />
 
1641
                                                        <!--
 
1642
                                                                ICE18 - Force the empty folder to be created. Even though it
 
1643
                                                                has sub folders the validator flags this as an error.
 
1644
        
 
1645
                                                                http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp
 
1646
                                                        -->
 
1647
                                                        <CreateFolder />
 
1648
                                                </Component>
 
1649
                                                <Component Id="SharpDevelopAppPathRegistrySetting" Guid="E812C3C9-1753-4535-80B9-BD8BCE7DB1A5">
 
1650
                                                        <!--
 
1651
                                                                App Path registry setting lives in HKLM so only add it if the
 
1652
                                                                user has admin rights. 
 
1653
                                                        -->
 
1654
                                                        <Condition>Privileged</Condition>
 
1655
                                                        <RegistryValue Id="SharpDevelopAppPathRegistryKey" Key="Software\Microsoft\Windows\CurrentVersion\App Paths\SharpDevelop.exe" Root="HKLM" Value="[!SharpDevelop.exe]" Type="string" Action="write" />
 
1656
                                                </Component>
 
1657
                                                <!--
 
1658
                                                        Dummy components that are empty. These are used so
 
1659
                                                        the feature tree does not show the Network installation
 
1660
                                                        as an option.
 
1661
                                                -->
 
1662
                                                <Component Id="DummyCompleteFeatureComponent" Guid="22AB4C49-89FD-413F-8A1D-456AFB1AD611">
 
1663
                                                        <!--
 
1664
                                                                Fix ICE18 error. The validator thinks that the install folder
 
1665
                                                                could be empty so we have to use CreateFolder in this component.
 
1666
 
 
1667
                                                                http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp
 
1668
                                                        -->
 
1669
                                                        <CreateFolder />
 
1670
                                                </Component>
 
1671
                                                <Component Id="DummyFileAssocationFeatureComponent" Guid="F0390EC4-6B66-4823-B4F4-7F29E3D6AB54">
 
1672
                                                        <!--
 
1673
                                                                Fix ICE18 error. The validator thinks that the install folder
 
1674
                                                                could be empty so we have to use CreateFolder in this component.
 
1675
 
 
1676
                                                                http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp
 
1677
                                                        -->
 
1678
                                                        <CreateFolder />
 
1679
                                                </Component>
 
1680
                                        </Directory>
 
1681
                                </Directory>
 
1682
                        </Directory>
 
1683
                        <!-- SharpDevelop Start menu folder -->
 
1684
                        <Directory Id="ProgramMenuFolder" Name="Programs">
 
1685
                                <Component Id="SharpDevelopProgramMenuItems" Guid="212A9717-E2C6-4522-AB76-9B92B7FB7FB6">
 
1686
                                        <!--
 
1687
                                                Fix ICE 38 by adding a dummy registry key that is the key for this shortcut.
 
1688
                                                http://msdn.microsoft.com/library/en-us/msi/setup/ice38.asp
 
1689
                                        -->
 
1690
                                        <RegistryValue Id="SharpDevelopExeStartMenuShortcutRegistryKey" Root="HKCU" Type="string" KeyPath="yes" Key="Software\SharpDevelop\$(var.PRODUCTMAJORVERSION)" Name="ProgramFilesShortcut" Value="1" />
 
1691
                                        <Shortcut Name="SharpDevelop $(var.PRODUCTDISPLAYVERSION)" Target="[!SharpDevelop.exe]" Id="SharpDevelopExeStartMenuShortcut" WorkingDirectory="BinFolder" Icon="SharpDevelopIcon.exe" Directory="ProgramMenuFolder" />
 
1692
                                </Component>
 
1693
                        </Directory>
 
1694
                        <!-- Desktop shortcuts -->
 
1695
                        <Directory Id="DesktopFolder" Name="Desktop">
 
1696
                                <Component Id="DesktopFolderItems" Guid="03C3A248-04B0-4DE7-B4BA-C2D7275AA9FA">
 
1697
                                        <!--
 
1698
                                                Fix ICE 38 by adding a dummy registry key that is the key for this shortcut.
 
1699
                                                http://msdn.microsoft.com/library/en-us/msi/setup/ice38.asp
 
1700
                                        -->
 
1701
                                        <RegistryValue Id="SharpDevelopExeDesktopShortcutRegistryKey" Type="string" Root="HKCU" KeyPath="yes" Key="Software\SharpDevelop\$(var.PRODUCTMAJORVERSION)" Name="DesktopShortcut" Value="1" />
 
1702
                                        <Shortcut Id="SharpDevelopExeDesktopShortcut" Directory="DesktopFolder" Target="[!SharpDevelop.exe]" Name="SharpDevelop $(var.PRODUCTDISPLAYVERSION)" Icon="SharpDevelopIcon.exe" WorkingDirectory="BinFolder" />
 
1703
                                </Component>
 
1704
                        </Directory>
 
1705
                </DirectoryRef>
 
1706
        </Fragment>
 
1707
</Wix>
 
 
b'\\ No newline at end of file'