You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1555 lines
144 KiB
1555 lines
144 KiB
<!-- Defines all the directories, files and components to be installed --> |
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"> |
|
<Fragment> |
|
<DirectoryRef Id="TARGETDIR"> |
|
<!-- SharpDevelop installation directory and files --> |
|
<Directory Id="ProgramFilesFolder" Name="PFiles"> |
|
<Directory Id="SharpDevelopFolder" Name="SharpDevelop"> |
|
<Directory Id="INSTALLDIR" Name="4.0"> |
|
<Directory Id="BinFolder" Name="bin"> |
|
<Component Id="SharpDevelopExe" Guid="F632C62C-A4DD-4507-9678-C7DCFF4DBC8C" DiskId="1"> |
|
<File Id="SharpDevelop.exe" Name="SharpDevelop.exe" Source="..\..\bin\SharpDevelop.exe" Assembly=".net" AssemblyApplication="SharpDevelop.exe" AssemblyManifest="SharpDevelop.exe" KeyPath="yes"> |
|
<!-- |
|
NGens SharpDevelop.exe. Needs the NetFx extension (WixNetFxExtension.dll), |
|
library (netfx.wixlib) and custom actions (netfxca.dll). |
|
|
|
Priority=0 means the image generation occurs during |
|
setup. Other values defer the generation. |
|
|
|
Default Platform value is 32bit which tries to generate images |
|
for 32 bitversions of the .NET framework on the |
|
target machine. This will fail on a machine with |
|
64 bit version of .NET. Cannot use Platform=all |
|
since this runs NGen for both 32 and 64 bit versions |
|
regardless of whether they exist on the target |
|
machine. |
|
--> |
|
<!-- 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). --> |
|
<netfx:NativeImage Id="SharpDevelopNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Component Id="BooProjectFileAssociation" Guid="8FD60FEE-9220-4409-B98E-273AAC4A03E0" DiskId="1"> |
|
<!-- |
|
Get several ICE33 warnings using the ProgId element |
|
but these apparently can safely be ignored |
|
according to a post on the wix-users list by |
|
Rob Mencshing. Also using the ProgId element |
|
does not create the ProgId table. The current installer |
|
no longer uses the ProgId but instead uses Registry |
|
keys instead. It still creates the same entries in the |
|
msi. |
|
|
|
http://sourceforge.net/mailarchive/message.php?msg_id=9075241 |
|
|
|
Note that the Target of the form [#FileId] expands out to the |
|
full path of the file. A target of the form [!FileId] |
|
expands to the short name of the file (i.e. it includes ~ |
|
characters). We need the full path otherwise the exe name |
|
will be something like SharpDev~1.exe and the |
|
SharpDevelop.exe.manifest file will not be found when |
|
running the application so it does not use XP visual styles. |
|
Unfortunately using [#FileId] generates lots of ICE69 |
|
warnings for the icon and the SharpDevelop.exe target |
|
if they are in a different component. |
|
Not sure why [!FileId] does not produce an error since |
|
the problem seems to be similar, basically the registry |
|
key generated by the ProgId element belongs to one |
|
component whilst we are referencing another component |
|
containing the SharpDevelop.exe and another |
|
containing the icon. |
|
|
|
http://msdn.microsoft.com/library/en-us/msi/setup/ice69.asp |
|
|
|
The ICE69 errors can be ignored for now since the component |
|
being referenced by the file associations will always be installed |
|
even though it is in a different feature. If the FileTypeRegister |
|
addin is an optional install then the ICE69 errors would need to |
|
be resolved. |
|
|
|
We are not using the ProgId element which sets up the |
|
file association registry keys for us, but are specifying them |
|
directly as registry keys. This allows us to use one of the keys |
|
as a key path instead of having to use the parent component's |
|
directory as the key path. The key path is what is used |
|
by the installer to detect whether the component is installed. |
|
Using the component's parent directory (i.e. the Bin folder) |
|
is not feasible since the file associations may not be installed |
|
if the user does not install them in the feature tree. |
|
--> |
|
<RegistryValue Id="SD.booprojfile" Root="HKCR" Type="string" Key="SD.booprojfile" Value="Boo Project" KeyPath="yes" /> |
|
<RegistryValue Id="SD.booprojfile.command" Root="HKCR" Type="string" Key="SD.booprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.booprojfile.icon" Root="HKCR" Type="string" Key="SD.booprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> |
|
<RegistryValue Id="SD.booprojfile.association" Root="HKCR" Type="string" Key=".booproj" Value="SD.booprojfile" /> |
|
</Component> |
|
<Component Id="CSharpFileAssociation" Guid="C98CAD28-2903-4B3A-8C56-B4A09AEC4509" DiskId="1"> |
|
<RegistryValue Id="SD.csfile" Root="HKCR" Type="string" Key="SD.csfile" Value="C# File" KeyPath="yes" /> |
|
<RegistryValue Id="SD.csfile.command" Root="HKCR" Type="string" Key="SD.csfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.csfile.icon" Root="HKCR" Type="string" Key="SD.csfile\DefaultIcon" Value=""[#cs.ico]"" /> |
|
<RegistryValue Id="SD.csfile.association" Root="HKCR" Type="string" Key=".cs" Value="SD.csfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopCSharpProjectFileAssociation" Guid="3BDC1362-4363-42AF-821D-B06516A715E2" DiskId="1"> |
|
<RegistryValue Id="SD.csprojfile" Root="HKCR" Type="string" Key="SD.csprojfile" Value="C# Project" KeyPath="yes" /> |
|
<RegistryValue Id="SD.csproj.command" Root="HKCR" Type="string" Key="SD.csprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.csproj.icon" Root="HKCR" Type="string" Key="SD.csprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> |
|
<RegistryValue Id="SD.csproj.association" Root="HKCR" Type="string" Key=".csproj" Value="SD.csprojfile" /> |
|
</Component> |
|
<Component Id="PythonProjectFileAssociation" Guid="6BA02209-9C7A-42A3-85BC-407FA4C0B646" DiskId="1"> |
|
<RegistryValue Id="SD.pyprojfile" Root="HKCR" Type="string" Key="SD.pyprojfile" Value="Python Project File" KeyPath="yes" /> |
|
<RegistryValue Id="SD.pyprojfile.command" Root="HKCR" Type="string" Key="SD.pyprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.pyprojfile.icon" Root="HKCR" Type="string" Key="SD.pyprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> |
|
<RegistryValue Id="SD.pyprojfile.association" Root="HKCR" Type="string" Key=".pyproj" Value="SD.pyprojfile" /> |
|
</Component> |
|
<Component Id="ResxFileAssociation" Guid="EA3BA93F-C2EE-4FB2-AEA7-A661A3054AB1" DiskId="1"> |
|
<RegistryValue Id="SD.resxfile" Root="HKCR" Type="string" Key="SD.resxfile" Value="Resx File" KeyPath="yes" /> |
|
<RegistryValue Id="SD.resxfile.command" Root="HKCR" Type="string" Key="SD.resxfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.resxfile.icon" Root="HKCR" Type="string" Key="SD.resxfile\DefaultIcon" Value=""[#resx.ico]"" /> |
|
<RegistryValue Id="SD.resxfile.association" Root="HKCR" Type="string" Key=".resx" Value="SD.resxfile" /> |
|
</Component> |
|
<Component Id="ResourcesFileAssociation" Guid="9CC7AE6F-F0B2-47E7-9DD4-0C571C89F46D" DiskId="1"> |
|
<RegistryValue Id="SD.resourcesfile" Root="HKCR" Type="string" Key="SD.resourcesfile" Value="Resources File" KeyPath="yes" /> |
|
<RegistryValue Id="SD.resourcesfile.command" Root="HKCR" Type="string" Key="SD.resourcesfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.resourcesfile.icon" Root="HKCR" Type="string" Key="SD.resourcesfile\DefaultIcon" Value=""[#resx.ico]"" /> |
|
<RegistryValue Id="SD.resourcesfile.association" Root="HKCR" Type="string" Key=".resources" Value="SD.resourcesfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopAddInFileAssociation" Guid="EBBEA1CE-1CA8-4A69-81ED-D81BD8597A39" DiskId="1"> |
|
<RegistryValue Id="SD.sdaddinfile" Root="HKCR" Type="string" Key="SD.sdaddinfile" Value="SharpDevelop AddIn Installation Package" KeyPath="yes" /> |
|
<RegistryValue Id="SD.sdaddinfile.command" Root="HKCR" Type="string" Key="SD.sdaddinfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.sdaddinfile.icon" Root="HKCR" Type="string" Key="SD.sdaddinfile\DefaultIcon" Value=""[#addin.ico]"" /> |
|
<RegistryValue Id="SD.sdaddinfile.association" Root="HKCR" Type="string" Key=".sdaddin" Value="SD.sdaddinfile" /> |
|
</Component> |
|
<Component Id="VBFileAssociation" Guid="C25FF25E-6E21-432A-A477-40293CE8783B" DiskId="1"> |
|
<RegistryValue Id="SD.vbfile" Root="HKCR" Type="string" Key="SD.vbfile" Value="VB.NET File" KeyPath="yes" /> |
|
<RegistryValue Id="SD.vbfile.command" Root="HKCR" Type="string" Key="SD.vbfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.vbfile.icon" Root="HKCR" Type="string" Key="SD.vbfile\DefaultIcon" Value=""[#vb.ico]"" /> |
|
<RegistryValue Id="SD.vbfile.association" Root="HKCR" Type="string" Key=".vb" Value="SD.vbfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopVBProjectFileAssociation" Guid="BDA641EE-B110-4E09-B4C6-7D2DBBFA578A" DiskId="1"> |
|
<RegistryValue Id="SD.vbprojfile" Root="HKCR" Type="string" Key="SD.vbprojfile" Value="VB.NET Project" KeyPath="yes" /> |
|
<RegistryValue Id="SD.vbprojfile.command" Root="HKCR" Type="string" Key="SD.vbprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.vbprojfile.icon" Root="HKCR" Type="string" Key="SD.vbprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> |
|
<RegistryValue Id="SD.vbprojfile.association" Root="HKCR" Type="string" Key=".vbproj" Value="SD.vbprojfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopWixProjectFileAssociation" Guid="FB612902-CD8E-4161-8F95-3280AE433D11" DiskId="1"> |
|
<RegistryValue Id="SD.wixprojfile" Root="HKCR" Type="string" Key="SD.wixprojfile" Value="WiX Project" KeyPath="yes" /> |
|
<RegistryValue Id="SD.wixprojfile.command" Root="HKCR" Type="string" Key="SD.wixprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.wixprojfile.icon" Root="HKCR" Type="string" Key="SD.wixprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> |
|
<RegistryValue Id="SD.wixprojfile.association" Root="HKCR" Type="string" Key=".wixproj" Value="SD.wixprojfile" /> |
|
</Component> |
|
<Component Id="XmlFileAssociation" Guid="EB0CC9A4-2934-465B-831F-0EC4B718A162" DiskId="1"> |
|
<RegistryValue Id="SD.xmlfile" Root="HKCR" Type="string" Key="SD.xmlfile" Value="XML File" KeyPath="yes" /> |
|
<RegistryValue Id="SD.xmlfile.command" Root="HKCR" Type="string" Key="SD.xmlfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.xmlfile.icon" Root="HKCR" Type="string" Key="SD.xmlfile\DefaultIcon" Value=""[#xml.ico]"" /> |
|
<RegistryValue Id="SD.xmlfile.association" Root="HKCR" Type="string" Key=".xml" Value="SD.xmlfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopSolutionFileAssociation" Guid="A5E7E0DE-7A32-439D-8155-C4335A2E4876" DiskId="1"> |
|
<RegistryValue Id="SD.slnfile" Root="HKCR" Type="string" Key="SD.slnfile" Value="SharpDevelop Solution" KeyPath="yes" /> |
|
<RegistryValue Id="SD.slnfile.command" Root="HKCR" Type="string" Key="SD.slnfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.slnfile.icon" Root="HKCR" Type="string" Key="SD.slnfile\DefaultIcon" Value=""[#cmbx.ico]"" /> |
|
<RegistryValue Id="SD.slnfile.association" Root="HKCR" Type="string" Key=".sln" Value="SD.slnfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopExeFiles" Guid="B9427DC8-6C86-4D1A-B3DC-1B0E0F1F1DC1" DiskId="1"> |
|
<File Source="..\..\bin\SharpDevelop.exe.config" Id="SharpDevelop.exe.config" Name="SharpDevelop.exe.config" /> |
|
</Component> |
|
<Component Id="ICSharpCodeBuildTasksDll" Guid="E94FCC8C-9741-45EF-AFDA-9F9CF02BF3F7" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Id="BuildTasksTargetFiles" DiskId="1" Guid="55F82461-DEED-43BB-8A79-7243B762EA60"> |
|
<File Source="..\..\bin\SharpDevelop.Build.Common.targets" Id="SharpDevelop.Build.Common.targets" Name="SharpDevelop.Build.Common.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.Build.MSIL.targets" Id="SharpDevelop.Build.MSIL.targets" Name="SharpDevelop.Build.MSIL.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.CodeAnalysis.targets" Id="SharpDevelop.CodeAnalysis.targets" Name="SharpDevelop.CodeAnalysis.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.CheckMSBuild35Features.targets" Id="SharpDevelop.CheckMSBuild35Features.targets" Name="SharpDevelop.CheckMSBuild35Features.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.TargetingPack.targets" Id="SharpDevelop.TargetingPack.targets" Name="SharpDevelop.TargetingPack.targets" /> |
|
</Component> |
|
<Component Id="ICSharpCodeCoreDll" Guid="DFD67330-0F6D-4069-9B03-90E2BB7B9273" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Id="ICSharpCodeNRefactoryDll" Guid="53FE6482-01C2-45DE-9929-A84510CDF39C" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Id="ICSharpCodeSharpDevelopDll" Guid="CC2E4AAB-58C0-40B7-B440-1D7F65EED379" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Id="ICSharpCodeSharpDevelopDomDll" Guid="3F7DB0E5-6755-419B-85E1-6A52372D25FA" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="C35A1267-0E57-4DBE-95C7-0CA13E8F3C56" Id="ICSharpCodeSharpDevelopWidgets" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Id="ICSharpCodeSharpDevelopSdaFiles" Guid="12B16781-2FFE-4E80-A78E-73F1425991BF" DiskId="1"> |
|
<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" /> |
|
<File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.dll.config" Id="ICSharpCode.SharpDevelop.Sda.dll.config" Name="ICSharpCode.SharpDevelop.Sda.dll.config" /> |
|
<File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.xml" Id="ICSharpCode.SharpDevelop.Sda.xml" Name="ICSharpCode.SharpDevelop.Sda.xml" /> |
|
</Component> |
|
<Component Id="log4netDll" Guid="0CE6ECAC-3C96-419E-9EA9-01F95C2C17BC" DiskId="1"> |
|
<File Source="..\..\bin\log4net.dll" Name="log4net.dll" Id="log4net.dll" Assembly=".net" AssemblyApplication="log4net.dll" AssemblyManifest="log4net.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="MonoCecilDll" Guid="F714FD47-9E0A-488F-8F44-11C0220721E3" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Directory Id="ToolsFolder" Name="Tools"> |
|
<Directory Id="WixFolder" Name="Wix"> |
|
<Component Guid="78F8DB04-62B1-4A2F-A0D5-D8D890FE5D02" Id="WixVSExtension" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixVSExtension.dll" Id="WixVSExtension.dll" Name="WixVSExtension.dll" Assembly=".net" AssemblyApplication="WixVSExtension.dll" AssemblyManifest="WixVSExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="CandleExe" Guid="F76A6F0B-FE35-428A-9DFA-ED1BEB5322AF" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\candle.exe" Name="candle.exe" Id="candle.exe" Assembly=".net" AssemblyApplication="candle.exe" AssemblyManifest="candle.exe" KeyPath="yes" /> |
|
<File Source="..\..\bin\Tools\Wix\candle.exe.config" Id="candle.exe.config" Name="candle.exe.config" /> |
|
</Component> |
|
<Component Id="WixLicenseFiles" Guid="48DABE56-3E5A-41C3-8451-236C9E9EF3C3" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\CPL.TXT" Name="CPL.TXT" Id="CPL.TXT" /> |
|
</Component> |
|
<Component Id="DarkExe" Guid="45BAAB13-6E19-42DA-80BE-8C44EAD8A24E" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\dark.exe" Name="dark.exe" Id="dark.exe" Assembly=".net" AssemblyApplication="dark.exe" AssemblyManifest="dark.exe" KeyPath="yes" /> |
|
<File Source="..\..\bin\Tools\Wix\dark.exe.config" Id="dark.exe.config" Name="dark.exe.config" /> |
|
</Component> |
|
<Component Id="LightExe" Guid="FFC7503F-A9BC-484C-BA88-4C0F700329DE" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\light.exe" Name="light.exe" Id="light.exe" Assembly=".net" AssemblyApplication="light.exe" AssemblyManifest="light.exe" KeyPath="yes" /> |
|
<File Source="..\..\bin\Tools\Wix\light.exe.config" Id="light.exe.config" Name="light.exe.config" /> |
|
</Component> |
|
<Component Id="LitExe" Guid="58312D82-CA9F-432C-BDE4-B96C6CC4EB22" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\lit.exe" Name="lit.exe" Id="lit.exe" Assembly=".net" AssemblyApplication="lit.exe" AssemblyManifest="lit.exe" KeyPath="yes" /> |
|
<File Source="..\..\bin\Tools\Wix\lit.exe.config" Id="lit.exe.config" Name="lit.exe.config" /> |
|
</Component> |
|
<Component Id="MergeModDll" Guid="2A3A1AA5-CB60-410A-B488-64F0A99682FF" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\mergemod.dll" Name="mergemod.dll" Id="mergemod.dll" /> |
|
</Component> |
|
<Component Id="MicrosoftToolsWindowsInstallerXmlNAntTasksDll" Guid="BD16E99F-24CB-4D91-A763-5F513A528DBD" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Id="WInteropDll" Guid="55EC9E38-B9E5-40E0-9B13-959154F215AB" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\winterop.dll" Name="winterop.dll" Id="winterop.dll" /> |
|
</Component> |
|
<Component Id="WixDll" Guid="C0A01A75-4EED-49D5-BAC4-B218236D4524" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\wix.dll" Name="wix.dll" Id="wix.dll" Assembly=".net" AssemblyApplication="wix.dll" AssemblyManifest="wix.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="WixCopExe" Guid="9DB7F19E-E737-46FC-A07B-1EEB7C710680" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixCop.exe" Name="WixCop.exe" Id="WixCop.exe" Assembly=".net" AssemblyApplication="WixCop.exe" AssemblyManifest="WixCop.exe" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="WixNetFxExtensionDll" Guid="CED55A4E-1F05-471F-8EA5-73277E3EFEFA" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixNetFxExtension.dll" Id="WixNetFxExtension.dll" Name="WixNetFxExtension.dll" Assembly=".net" AssemblyApplication="WixNetFxExtension.dll" AssemblyManifest="WixNetFxExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="WixTasksDll" Guid="B07D86EB-BB9A-4FD6-A882-2F0537AB21B5" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\wix.targets" Id="wix.targets" Name="wix.targets" /> |
|
<File Source="..\..\bin\Tools\Wix\WixTasks.dll" Name="WixTasks.dll" Id="WixTasks.dll" Assembly=".net" AssemblyApplication="WixTasks.dll" AssemblyManifest="WixTasks.dll" KeyPath="yes" /> |
|
</Component> |
|
<Directory Id="WixBitmapsFolder" Name="Bitmaps"> |
|
<Component Guid="363E0512-B16C-43ED-A1BE-CE91DBD2463E" Id="WixBitmapFiles" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\Bitmaps\bannrbmp.bmp" Name="bannrbmp.bmp" Id="bannrbmp.bmp" /> |
|
<File Source="..\..\bin\Tools\Wix\Bitmaps\dlgbmp.bmp" Name="dlgbmp.bmp" Id="dlgbmp.bmp" /> |
|
<File Source="..\..\bin\Tools\Wix\Bitmaps\exclamic.ico" Name="exclamic.ico" Id="exclamic.ico" /> |
|
<File Source="..\..\bin\Tools\Wix\Bitmaps\info.ico" Name="info.ico" Id="info.ico" /> |
|
<File Source="..\..\bin\Tools\Wix\Bitmaps\New.ico" Name="New.ico" Id="New.ico" /> |
|
<File Source="..\..\bin\Tools\Wix\Bitmaps\Up.ico" Name="Up.ico" Id="Up.ico" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="6D18FAA0-440D-47FA-B9C1-790A00ADF96D" Id="DariceCub" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\darice.cub" Name="darice.cub" Id="darice.cub" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="3EF5C4FB-8CAC-4E26-A8F1-1153587AA2BA" Id="HeatExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\heat.exe.config" Name="heat.exe.config" Id="heat.exe.config" /> |
|
<File Source="..\..\bin\Tools\Wix\heat.exe" Name="heat.exe" Id="heat.exe" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="14177C96-097D-46EA-BCCF-8CC536E4A590" Id="MeltExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\melt.exe.config" Name="melt.exe.config" Id="melt.exe.config" /> |
|
<File Source="..\..\bin\Tools\Wix\melt.exe" Name="melt.exe" Id="melt.exe" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="D6D6FFD1-A604-46A1-8FBD-379FCF50D3A0" Id="MergeModCub" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\mergemod.cub" Name="mergemod.cub" Id="mergemod.cub" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="3BD54C3E-6967-4E90-BDF0-0EA005BC39D4" Id="MSPatchCDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\mspatchc.dll" Name="mspatchc.dll" Id="mspatchc.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="697F78FC-BD77-46F0-9485-DABFBE5DDAB0" Id="PyroExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\pyro.exe.config" Name="pyro.exe.config" Id="pyro.exe.config" /> |
|
<File Source="..\..\bin\Tools\Wix\pyro.exe" Name="pyro.exe" Id="pyro.exe" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="A9351908-10B6-46BD-AB7E-40C9A303E8C1" Id="SmokeExe" KeyPath="yes"> |
|
<File Source="..\..\bin\Tools\Wix\smoke.exe.config" Name="smoke.exe.config" Id="smoke.exe.config" /> |
|
<File Source="..\..\bin\Tools\Wix\smoke.exe" Name="smoke.exe" Id="smoke.exe" /> |
|
</Component> |
|
<Component Guid="11B93603-DEFB-48E3-81E7-500DC72C5B00" Id="TorchExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\torch.exe.config" Name="torch.exe.config" Id="torch.exe.config" /> |
|
<File Source="..\..\bin\Tools\Wix\torch.exe" Name="torch.exe" Id="torch.exe" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="BCB44004-A7A2-4734-BF99-A078049A4258" Id="WConsoleDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\wconsole.dll" Name="wconsole.dll" Id="wconsole.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="2A50A069-7476-4DE1-A947-B1622F39D2F2" Id="WuiDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\wui.dll" Name="wui.dll" Id="wui.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="EBF81D57-1F21-41DF-8C4F-DBAC919BA99D" Id="WixDifxAppExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixDifxAppExtension.dll" Name="WixDifxAppExtension.dll" Id="WixDifxAppExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="7EFD65B5-BD14-4C38-B089-690FBBC7F2C7" Id="WixIIsExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixIIsExtension.dll" Name="WixIIsExtension.dll" Id="WixIIsExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C9B3D00C-723A-46E8-B989-CCE271F7ABA8" Id="WixIsolatedAppExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixIsolatedAppExtension.dll" Name="WixIsolatedAppExtension.dll" Id="WixIsolatedAppExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="83B4462D-C479-4BF5-BD90-68CC8C6CBE0F" Id="WixOfficeExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixOfficeExtension.dll" Name="WixOfficeExtension.dll" Id="WixOfficeExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="AE8B607B-A4DF-4282-A013-8588D884144F" Id="WixPSExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixPSExtension.dll" Name="WixPSExtension.dll" Id="WixPSExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="57293693-36D9-4817-A7B5-3AA0B14082DA" Id="WixSqlExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixSqlExtension.dll" Name="WixSqlExtension.dll" Id="WixSqlExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="D7DF419E-A022-488C-BCFB-5C52F1406C06" Id="WixUIExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixUIExtension.dll" Name="WixUIExtension.dll" Id="WixUIExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="9F85F147-14CD-4940-A166-292A550454E2" Id="WixUtilExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixUtilExtension.dll" Name="WixUtilExtension.dll" Id="WixUtilExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="8F2C8A8F-876B-4493-862E-23BE544F3E70" Id="WixComPlusExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixComPlusExtension.dll" Name="WixComPlusExtension.dll" Id="WixComPlusExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="14C6D703-D1E8-4D3C-8BAB-A78130818589" Id="WixMsmqExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixMsmqExtension.dll" Name="WixMsmqExtension.dll" Id="WixMsmqExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="43F0C244-A993-4ECE-985C-C89A727123DA" Id="WixDirectXExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixDirectXExtension.dll" Name="WixDirectXExtension.dll" Id="WixDirectXExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="169DE6D0-F8F4-47EF-803C-205E7991674E" Id="WixFirewallExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixFirewallExtension.dll" Name="WixFirewallExtension.dll" Id="WixFirewallExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="A49F5086-079E-4F5D-AD48-81DD1A7CF0BA" Id="WixGamingExtensionDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\WixGamingExtension.dll" Name="WixGamingExtension.dll" Id="WixGamingExtension.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="EA637AA9-E615-4AC9-A599-600135950415" Id="Difxapp_x64Wixlib" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\difxapp_x64.wixlib" Name="difxapp_x64.wixlib" Id="difxapp_x64.wixlib" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="686E31B0-4BE9-4AA2-8C04-D17BAF820A86" Id="Difxapp_x86Wixlib" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\difxapp_x86.wixlib" Name="difxapp_x86.wixlib" Id="difxapp_x86.wixlib" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="NUnitFolder" Name="NUnit"> |
|
<Component Guid="108E9A75-72D2-40FA-B65C-EFB5ECADB245" Id="NUnitConsoleFiles" DiskId="1"> |
|
<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" /> |
|
<File Source="..\..\bin\Tools\NUnit\nunit-console.exe.config" Id="nunit_console.exe.config" Name="nunit-console.exe.config" /> |
|
</Component> |
|
<Component Guid="AB89A052-2D0A-426E-B755-6FA1A9C1C64F" Id="NUnitFrameworkDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit.framework.dll" Id="nunit.framework.dll" Name="nunit.framework.dll" /> |
|
</Component> |
|
<Component Guid="C996D268-4471-4CBF-9015-43357863360A" Id="NUnitConsoleX86Files" DiskId="1"> |
|
<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" /> |
|
<File Source="..\..\bin\Tools\NUnit\nunit-console-x86.exe.config" Name="nunit-console-x86.exe.config" Id="nunit_console_x86.exe.config" /> |
|
</Component> |
|
<Directory Id="lib" Name="lib"> |
|
<Component Guid="7A72406E-0E83-4CE7-BB3A-2F3CC2D6F91B" Id="NUnitConsoleRunnerDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\lib\nunit-console-runner.dll" Name="nunit-console-runner.dll" Id="lib.nunit_console_runner.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="81A713E3-4905-4006-8510-3E1F3AB9AD13" Id="NUnitCoreDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\lib\nunit.core.dll" Name="nunit.core.dll" Id="lib.nunit.core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="8E89CF2B-A866-4488-91F9-9079565FD9AE" Id="NUnitCoreInterfacesDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\lib\nunit.core.interfaces.dll" Name="nunit.core.interfaces.dll" Id="lib.nunit.core.interfaces.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="F9388116-85AE-4BF0-8CF6-0E6B5C3DD15F" Id="NUnitUtilDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\lib\nunit.util.dll" Name="nunit.util.dll" Id="lib.nunit.util.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="FAEE921D-6A1D-48AD-A1AF-7AB39548D1F9" Id="NUnitConsoleDotnet2Files" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2.exe" Name="nunit-console-dotnet2.exe" Id="nunit_console_dotnet2.exe" KeyPath="yes" /> |
|
<File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2.exe.config" Name="nunit-console-dotnet2.exe.config" Id="nunit_console_dotnet2.exe.config" /> |
|
</Component> |
|
<Component Guid="6ACE3D5E-9042-4898-BD43-BD39E8DCB879" Id="NUnitConsoleDotnet2X86Files" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2-x86.exe" Name="nunit-console-dotnet2-x86.exe" Id="nunit_console_dotnet2_x86.exe" KeyPath="yes" /> |
|
<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" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="PartCover" Name="PartCover"> |
|
<Component Guid="CD9AB556-51BD-4DB2-9AC5-C047022991DD" Id="InteropPartCoverDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="2748871F-77C1-4107-A004-869CF09CCFE2" Id="PartCoverConsoleManualRtf" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover Console Manual.rtf" Id="PartCover_Console_Manual.rtf" Name="PartCover Console Manual.rtf" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="82F8BEA9-C5FD-48B8-9A4D-AED613DF664A" Id="PartCoverCorDriverDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover.CorDriver.dll" Id="PartCover.CorDriver.dll" Name="PartCover.CorDriver.dll" KeyPath="yes" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryAppIdGuid" Root="HKCR" Type="string" Key="AppId\7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" Value="PartCoverCorDriver" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryAppIdDriverDll" Root="HKCR" Type="string" Key="AppId\PartCoverCorDriver.DLL" Name="AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuid" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}" Value="CorProfiler Object" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidAppId" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}" Name="AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidInProcServer" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\InProcServer32" Value="[#PartCover.CorDriver.dll]" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidInProcServerThreadingModel" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\InProcServer32" Name="ThreadingModel" Value="both" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidProgID" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\ProgID" Value="PartCover.CorDriver.CorProfiler.2" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidProgrammable" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\Programmable" Value="" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidTypeLib" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\TypeLib" Value="{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidVersionIndependentProgID" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4AC0-985F-1DD3C42FDF90}\VersionIndependentProgID" Value="PartCover.CorDriver.CorProfiler" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuid" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}" Value="PartCoverConnector2 Object" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidAppId" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidInprocServer32" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\InprocServer32" Value="[#PartCover.CorDriver.dll]" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidInprocServer32ThreadingModel" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\InprocServer32" Name="ThreadingModel" Value="both" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidProgId" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\ProgId" Value="PartCover.CorDriver.Connector.3" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidProgrammable" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\Programmable" Value="" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidTypeLib" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\TypeLib" Value="{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidVersionIndependentProgID" Root="HKCR" Type="string" Key="CLSID\{FB20430E-CDC9-45D7-8453-272268002E08}\VersionIndependentProgID" Value="PartCover.CorDriver.Connector" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistry" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector" Value="PartCoverConnector2 Object" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistryClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector\CLSID" Value="{FB20430E-CDC9-45D7-8453-272268002E08}" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistryCurVer" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector\CurVer" Value="PartCover.CorDriver.Connector.3" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistry3" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector.3" Value="PartCoverConnector2 Object" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistry3ClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector.3\CLSID" Value="{FB20430E-CDC9-45D7-8453-272268002E08}" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryName" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler" Value="CorProfiler Object" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryNameClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler\CLSID" Value="{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryNameCurVer" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler\CurVer" Value="PartCover.CorDriver.CorProfiler.2" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistry2" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler.2" Value="CorProfiler Object" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistry2ClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.CorProfiler.2\CLSID" Value="{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuid" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.1" Value="PartCover module" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuidWin32" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.1\0\win32" Value="[#PartCover.CorDriver.dll]" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuidFlags" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.1\FLAGS" Value="0" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuidHelp" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.1\HELPDIR" Value="" /> |
|
</Component> |
|
<Component Guid="429867BD-2DC0-4934-BED7-70A17978A57C" Id="PartCoverExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover.exe" Id="PartCover.exe" Name="PartCover.exe" Assembly=".net" KeyPath="yes" AssemblyApplication="PartCover.exe" AssemblyManifest="PartCover.exe" /> |
|
</Component> |
|
<Component Guid="1C2BDE86-9B7C-4DA3-BFC2-AD92EB27890B" Id="PartCoverExeConfig" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover.exe.config" Id="PartCover.exe.config" Name="PartCover.exe.config" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="9C5C2A46-D501-495C-A72A-977B0C67217D" Id="PartCoverFrameworkDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover.Framework.dll" Id="PartCover.Framework.dll" Name="PartCover.Framework.dll" KeyPath="yes" /> |
|
</Component> |
|
<Directory Id="Xslt" Name="Xslt"> |
|
<Component Guid="A2973C0C-487A-4D0E-AA42-B9D48DCDE060" Id="PartCoverToNCoverXslt" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\Xslt\PartCoverToNCover.xsl" Name="PartCoverToNCover.xsl" Id="PartCoverToNCover.xsl" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Component Guid="3730EF42-5257-4EB2-9DA1-57151E5EB5A3" Id="AgaControlsDll" DiskId="1"> |
|
<File Source="..\..\bin\Aga.Controls.dll" Id="Aga.Controls.dll" Name="Aga.Controls.dll" Assembly=".net" AssemblyApplication="Aga.Controls.dll" AssemblyManifest="Aga.Controls.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="2EC34D8A-CF14-4E1F-A512-9A596A1C256D" Id="ICSharpCodeCoreWinFormsDll" DiskId="1"> |
|
<File Source="..\..\bin\ICSharpCode.Core.WinForms.dll" Name="ICSharpCode.Core.WinForms.dll" Id="ICSharpCode.Core.WinForms.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="A124FA3C-F094-4FC2-88BA-D253DB319DC2" Id="AvalonDockDll" DiskId="1"> |
|
<File Source="..\..\bin\AvalonDock.dll" Name="AvalonDock.dll" Id="AvalonDock.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C54C86B8-EB49-473F-B7BD-639B71226E9E" Id="ICSharpCodeCorePresentationDll" DiskId="1"> |
|
<File Source="..\..\bin\ICSharpCode.Core.Presentation.dll" Name="ICSharpCode.Core.Presentation.dll" Id="ICSharpCode.Core.Presentation.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="7ACA96F6-7075-405A-B85D-D5930E984B19" Id="ICSharpCodeAvalonEditDll" DiskId="1"> |
|
<File Source="..\..\bin\ICSharpCode.AvalonEdit.dll" Name="ICSharpCode.AvalonEdit.dll" Id="ICSharpCode.AvalonEdit.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="84FB3C82-23BD-11DE-8F18-C06F55D89593" Id="ICSharpCodeTreeViewDll" DiskId="1"> |
|
<File Source="..\..\bin\ICSharpCode.TreeView.dll" Name="ICSharpCode.TreeView.dll" Id="ICSharpCode.TreeView.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="ICSharpCodeSharpDevelopBuildWorker35Exe" Guid="5065CD28-3B76-4AB9-B334-1DC1A91AA172" DiskId="1"> |
|
<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"> |
|
<netfx:NativeImage Id="BuildWorker35NGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
<File Id="ICSharpCode.SharpDevelop.BuildWorker35.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker35.exe.config" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker35.exe.config" /> |
|
</Component> |
|
<Component Id="ICSharpCodeSharpDevelopBuildWorker40Exe" Guid="25731457-7DB4-40F6-8AA9-21AF7F9C04DD" DiskId="1"> |
|
<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"> |
|
<netfx:NativeImage Id="BuildWorker40NGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
<File Id="ICSharpCode.SharpDevelop.BuildWorker40.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker40.exe.config" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker40.exe.config" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="DocFolder" Name="doc"> |
|
<Component Guid="9DCED5AC-B771-4A4F-B4FE-69867BF2EBDE" Id="SharpDevelopDocFiles" DiskId="1"> |
|
<File Source="..\..\doc\BuiltWithSharpDevelop.png" Id="BuiltWithSharpDevelop.png" Name="BuiltWithSharpDevelop.png" /> |
|
<File Source="..\..\doc\copyright.txt" Id="copyright.txt" Name="copyright.txt" /> |
|
<File Source="..\..\doc\license.txt" Name="license.txt" Id="DocFolderLicense.txt" /> |
|
<File Source="..\..\doc\readme.rtf" Name="readme.rtf" Id="readme.rtf" /> |
|
<File Source="..\..\doc\SharpDevelopInfoResources.txt" Id="SharpDevelopInfoResources.txt" Name="SharpDevelopInfoResources.txt" /> |
|
</Component> |
|
<Directory Id="TechNoteFolder" Name="technotes"> |
|
<Component Guid="167B7AF9-7267-4AD4-9C47-3373F0329840" Id="SharpDevelopTechNoteFiles" DiskId="1"> |
|
<File Source="..\..\doc\technotes\Versioning.html" Id="Versioning.html" Name="Versioning.html" /> |
|
<File Source="..\..\doc\technotes\AddInBuildingGuide.rtf" Id="AddInBuildingGuide.rtf" Name="AddInBuildingGuide.rtf" /> |
|
<File Source="..\..\doc\technotes\AddInManager.rtf" Id="AddInManager.rtf" Name="AddInManager.rtf" /> |
|
<File Source="..\..\doc\technotes\AddInTree.rtf" Id="AddInTree.rtf" Name="AddInTree.rtf" /> |
|
<File Source="..\..\doc\technotes\CodingStyleGuide.rtf" Id="CodingStyleGuide.rtf" Name="CodingStyleGuide.rtf" /> |
|
<File Source="..\..\doc\technotes\ConditionList.html" Id="ConditionList.html" Name="ConditionList.html" /> |
|
<File Source="..\..\doc\technotes\DoozerList.html" Id="DoozerList.html" Name="DoozerList.html" /> |
|
<File Source="..\..\doc\technotes\listing.css" Name="listing.css" Id="listing.css" /> |
|
<File Source="..\..\doc\technotes\TechicalWritingMadeEasier.rtf" Id="TechicalWritingMadeEasier.rtf" Name="TechicalWritingMadeEasier.rtf" /> |
|
<File Source="..\..\doc\technotes\TheFineArtOfCommenting.rtf" Id="TheFineArtOfCommenting.rtf" Name="TheFineArtOfCommenting.rtf" /> |
|
</Component> |
|
<Component Guid="B5E6404F-E602-42AA-9C3A-996425AC3B40" Id="AddInWritingHelpWebsiteShortcut" DiskId="1"> |
|
<File Id="AddInWritingHelp.url" Name="AddIn Writing Help.url" Source="..\..\doc\technotes\AddIn Writing Help.url" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="DataFolder" Name="data"> |
|
<Directory Id="ConversionStyleSheetsFolder" Name="ConversionStyleSheets"> |
|
<Component Guid="EEC59BAB-23BE-4FD3-8788-4A6023A6B394" Id="ConversionStyleSheetFiles" DiskId="1"> |
|
<File Source="..\..\data\ConversionStyleSheets\ShowXmlDocumentation.xsl" Id="ShowXmlDocumentation.xsl" Name="ShowXmlDocumentation.xsl" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ModesFolder" Name="modes"> |
|
<Component Guid="A716BD06-421C-4379-B99F-3E7874C1FDC7" Id="SyntaxModesFiles" DiskId="1"> |
|
<File Source="..\..\data\modes\C64CSharp.xshd" Id="C64CSharp.xshd" Name="C64CSharp.xshd" /> |
|
<File Source="..\..\data\modes\CSharp-Mode-VSEnh.xshd" Id="CSharp_Mode_VSEnh.xshd" Name="CSharp-Mode-VSEnh.xshd" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="OptionsFolder" Name="options"> |
|
<Directory Id="TextLibFolder" Name="TextLib"> |
|
<Component Guid="684834D7-0389-4A1B-92D9-AC43100EFD52" Id="TextLibOptionsFiles" DiskId="1"> |
|
<File Source="..\..\data\options\TextLib\ASCIITable.xml" Id="ASCIITable.xml" Name="ASCIITable.xml" /> |
|
<File Source="..\..\data\options\TextLib\CSharpDocumentationTags.xml" Id="CSharpDocumentationTags.xml" Name="CSharpDocumentationTags.xml" /> |
|
<File Source="..\..\data\options\TextLib\Licenses.xml" Name="Licenses.xml" Id="Licenses.xml" /> |
|
<File Source="..\..\data\options\TextLib\XSLT.xml" Name="XSLT.xml" Id="XSLT.xml" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="997EB70B-D4CB-41E9-9F67-9F33362B3936" Id="OptionsFiles" DiskId="1"> |
|
<File Source="..\..\data\options\SharpDevelopControlLibrary.sdcl" Id="SharpDevelopControlLibrary.sdcl" Name="SharpDevelopControlLibrary.sdcl" /> |
|
<File Source="..\..\data\options\SharpDevelopProperties.xml" Id="SharpDevelopProperties.xml" Name="SharpDevelopProperties.xml" /> |
|
<File Source="..\..\data\options\SharpDevelop-templates.xml" Id="SharpDevelop_templates.xml" Name="SharpDevelop-templates.xml" /> |
|
<File Source="..\..\data\options\SharpDevelop-tools.xml" Id="SharpDevelop_tools.xml" Name="SharpDevelop-tools.xml" /> |
|
<File Source="..\..\data\options\StandardHeader.xml" Id="StandardHeader.xml" Name="StandardHeader.xml" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LayoutsFolder" Name="layouts"> |
|
<Component Guid="B982324C-D787-425E-BB2C-4EF4C983867D" Id="LayoutFiles" DiskId="1"> |
|
<File Source="..\..\data\layouts\Plain.xml" Name="Plain.xml" Id="Plain.xml" /> |
|
<File Source="..\..\data\layouts\Debug.xml" Name="Debug.xml" Id="Debug.xml" /> |
|
<File Source="..\..\data\layouts\Default.xml" Name="Default.xml" Id="Default.xml" /> |
|
<File Source="..\..\data\layouts\LayoutConfig.xml" Id="LayoutConfig.xml" Name="LayoutConfig.xml" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ResourcesFolder" Name="resources"> |
|
<Directory Id="InstallerBitmapsFolder" Name="InstallerBitmaps"> |
|
<Component Guid="9FA2E783-96A7-4D61-BF60-4D923AD34923" Id="InstallerBitmapFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\InstallerBitmaps\up.bmp" Name="up.bmp" Id="up.bmp" /> |
|
<File Source="..\..\data\resources\InstallerBitmaps\default-banner.bmp" Id="default_banner.bmp" Name="default-banner.bmp" /> |
|
<File Source="..\..\data\resources\InstallerBitmaps\default-dialog.bmp" Id="default_dialog.bmp" Name="default-dialog.bmp" /> |
|
<File Source="..\..\data\resources\InstallerBitmaps\exclamic.bmp" Name="exclamic.bmp" Id="exclamic.bmp" /> |
|
<File Source="..\..\data\resources\InstallerBitmaps\info.bmp" Name="info.bmp" Id="info.bmp" /> |
|
<File Source="..\..\data\resources\InstallerBitmaps\new.bmp" Name="new.bmp" Id="new.bmp" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LanuagesFolder" Name="languages"> |
|
<Component Guid="52CFA578-E494-48D1-9928-38C3F867C47D" Id="LanguageBitmapFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\languages\usa.png" Name="usa.png" Id="usa.png" /> |
|
<File Source="..\..\data\resources\languages\Arabic.png" Name="Arabic.png" Id="Arabic.png" /> |
|
<File Source="..\..\data\resources\languages\brazil.png" Name="brazil.png" Id="brazil.png" /> |
|
<File Source="..\..\data\resources\languages\bulgaria.png" Name="bulgaria.png" Id="bulgaria.png" /> |
|
<File Source="..\..\data\resources\languages\catalonia.png" Id="catalonia.png" Name="catalonia.png" /> |
|
<File Source="..\..\data\resources\languages\chinalg.png" Name="chinalg.png" Id="chinalg.png" /> |
|
<File Source="..\..\data\resources\languages\czech.png" Name="czech.png" Id="czech.png" /> |
|
<File Source="..\..\data\resources\languages\denmark.png" Name="denmark.png" Id="denmark.png" /> |
|
<File Source="..\..\data\resources\languages\england.png" Name="england.png" Id="england.png" /> |
|
<File Source="..\..\data\resources\languages\finnish.png" Name="finnish.png" Id="finnish.png" /> |
|
<File Source="..\..\data\resources\languages\france.png" Name="france.png" Id="france.png" /> |
|
<File Source="..\..\data\resources\languages\germany.png" Name="germany.png" Id="germany.png" /> |
|
<File Source="..\..\data\resources\languages\hungary.png" Name="hungary.png" Id="hungary.png" /> |
|
<File Source="..\..\data\resources\languages\italy.png" Name="italy.png" Id="italy.png" /> |
|
<File Source="..\..\data\resources\languages\japan.png" Name="japan.png" Id="japan.png" /> |
|
<File Source="..\..\data\resources\languages\LanguageDefinition.xml" Id="LanguageDefinition.xml" Name="LanguageDefinition.xml" /> |
|
<File Source="..\..\data\resources\languages\lithuania.png" Id="lithuania.png" Name="lithuania.png" /> |
|
<File Source="..\..\data\resources\languages\mexico.png" Name="mexico.png" Id="mexico.png" /> |
|
<File Source="..\..\data\resources\languages\netherlands.png" Id="netherlands.png" Name="netherlands.png" /> |
|
<File Source="..\..\data\resources\languages\norway.png" Name="norway.png" Id="norway.png" /> |
|
<File Source="..\..\data\resources\languages\poland.png" Name="poland.png" Id="poland.png" /> |
|
<File Source="..\..\data\resources\languages\portugal.png" Name="portugal.png" Id="portugal.png" /> |
|
<File Source="..\..\data\resources\languages\romania.png" Name="romania.png" Id="romania.png" /> |
|
<File Source="..\..\data\resources\languages\russia.png" Name="russia.png" Id="russia.png" /> |
|
<File Source="..\..\data\resources\languages\Serbia.png" Name="Serbia.png" Id="Serbia.png" /> |
|
<File Source="..\..\data\resources\languages\slovenia.png" Name="slovenia.png" Id="slovenia.png" /> |
|
<File Source="..\..\data\resources\languages\south_korea.png" Id="south_korea.png" Name="south_korea.png" /> |
|
<File Source="..\..\data\resources\languages\spain.png" Name="spain.png" Id="spain.png" /> |
|
<File Source="..\..\data\resources\languages\sweden.png" Name="sweden.png" Id="sweden.png" /> |
|
<File Source="..\..\data\resources\languages\turkey.png" Name="turkey.png" Id="turkey.png" /> |
|
<File Source="..\..\data\resources\languages\uk.png" Name="uk.png" Id="uk.png" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="D8322576-2925-4F43-ACB0-05369DC5FC67" Id="StringResourceFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\StringResources.tr.resources" Id="StringResources.tr.resources" Name="StringResources.tr.resources" /> |
|
<File Source="..\..\data\resources\StringResources.cz.resources" Id="StringResources.cz.resources" Name="StringResources.cz.resources" /> |
|
<File Source="..\..\data\resources\StringResources.de.resources" Id="StringResources.de.resources" Name="StringResources.de.resources" /> |
|
<File Source="..\..\data\resources\StringResources.es.resources" Id="StringResources.es.resources" Name="StringResources.es.resources" /> |
|
<File Source="..\..\data\resources\StringResources.es-mx.resources" Id="StringResources.es_mx.resources" Name="StringResources.es-mx.resources" /> |
|
<File Source="..\..\data\resources\StringResources.fr.resources" Id="StringResources.fr.resources" Name="StringResources.fr.resources" /> |
|
<File Source="..\..\data\resources\StringResources.hu.resources" Id="StringResources.hu.resources" Name="StringResources.hu.resources" /> |
|
<File Source="..\..\data\resources\StringResources.it.resources" Id="StringResources.it.resources" Name="StringResources.it.resources" /> |
|
<File Source="..\..\data\resources\StringResources.kr.resources" Id="StringResources.kr.resources" Name="StringResources.kr.resources" /> |
|
<File Source="..\..\data\resources\StringResources.nl.resources" Id="StringResources.nl.resources" Name="StringResources.nl.resources" /> |
|
<File Source="..\..\data\resources\StringResources.no.resources" Id="StringResources.no.resources" Name="StringResources.no.resources" /> |
|
<File Source="..\..\data\resources\StringResources.pl.resources" Id="StringResources.pl.resources" Name="StringResources.pl.resources" /> |
|
<File Source="..\..\data\resources\StringResources.pt-br.resources" Id="StringResources.pt_br.resources" Name="StringResources.pt-br.resources" /> |
|
<File Source="..\..\data\resources\StringResources.ro.resources" Id="StringResources.ro.resources" Name="StringResources.ro.resources" /> |
|
<File Source="..\..\data\resources\StringResources.se.resources" Id="StringResources.se.resources" Name="StringResources.se.resources" /> |
|
</Component> |
|
<Component Guid="720DC3DF-9547-4069-9C36-873F41579791" Id="StringResources.pt.resources" DiskId="1"> |
|
<File Source="..\..\data\resources\StringResources.pt.resources" Id="StringResources.pt.resources" Name="StringResources.pt.resources" /> |
|
</Component> |
|
<Component Guid="78CE4E0B-296B-4479-8978-8D389BF01885" Id="StringResources.cngb.resources" DiskId="1"> |
|
<File Source="..\..\data\resources\StringResources.cn-gb.resources" Id="StringResources.cn_gb.resources" Name="StringResources.cn-gb.resources" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SchemasFolder" Name="schemas"> |
|
<Component Guid="1A3F6439-5B5F-4F20-BE1E-EE8DCC874E13" Id="SchemaFiles" DiskId="1"> |
|
<File Source="..\..\data\schemas\AddIn.xsd" Name="AddIn.xsd" Id="AddIn.xsd" /> |
|
<File Source="..\..\data\schemas\appconfig.xsd" Id="appconfig.xsd" Name="appconfig.xsd" /> |
|
<File Source="..\..\data\schemas\manifest.xsd" Name="manifest.xsd" Id="manifest.xsd" /> |
|
<File Source="..\..\data\schemas\nant.xsd" Name="nant.xsd" Id="nant.xsd" /> |
|
<File Source="..\..\data\schemas\readme.txt" Name="readme.txt" Id="readme.txt" /> |
|
<File Source="..\..\data\schemas\W3C-License.html" Id="W3C_License.html" Name="W3C-License.html" /> |
|
<File Source="..\..\data\schemas\wix.xsd" Name="wix.xsd" Id="Schemas.wix.xsd" /> |
|
<File Source="..\..\data\schemas\wixloc.xsd" Name="wixloc.xsd" Id="Schemas.wixloc.xsd" /> |
|
<File Source="..\..\data\schemas\XMLSchema.xsd" Id="XMLSchema.xsd" Name="XMLSchema.xsd" /> |
|
<File Source="..\..\data\schemas\xslt.xsd" Name="xslt.xsd" Id="xslt.xsd" /> |
|
</Component> |
|
<Component Guid="DDA8760D-3A80-4B99-A892-D31DE4C7656B" Id="WixDIfxAppSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\difxapp.xsd" Name="difxapp.xsd" Id="schemas.difxapp.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="D130268A-9AB7-4B85-BDA3-42F23D9739EE" Id="WixIisSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\iis.xsd" Name="iis.xsd" Id="schemas.iis.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="B3D95F66-6FBC-49E0-AB33-820DF40DF00D" Id="WixNetFxSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\netfx.xsd" Name="netfx.xsd" Id="schemas.netfx.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="BEF94C46-5EA3-4F9F-888C-57773CFE508B" Id="WixPSSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\ps.xsd" Name="ps.xsd" Id="schemas.ps.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="4347F699-3DD1-4DE5-824D-C3CF81DDD94E" Id="WixSqlSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\sql.xsd" Name="sql.xsd" Id="schemas.sql.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="59D8F1AC-5B89-416F-9D5C-38B5B1FE4DE1" Id="WixUtilSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\util.xsd" Name="util.xsd" Id="schemas.util.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="796AF8D7-5647-4E92-9DFD-4C55C578F994" Id="WixVSSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\vs.xsd" Name="vs.xsd" Id="schemas.vs.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="57266D3B-90C5-4DDF-8744-DB8EFD6707BF" Id="WixComPlusSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\complus.xsd" Name="complus.xsd" Id="schemas.complus.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="D79044D2-CAF6-4006-AF88-367FC97E86B6" Id="WixMSMQSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\msmq.xsd" Name="msmq.xsd" Id="schemas.msmq.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C0901A8C-00A4-4F2C-9A46-96D50A687D52" Id="WixFirewallSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\firewall.xsd" Name="firewall.xsd" Id="schemas.wix.firewall.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="CA5C2E97-D332-4FA3-8782-50A3FC09FAC7" Id="WixGamingSchema" DiskId="1"> |
|
<File Source="..\..\data\schemas\gaming.xsd" Name="gaming.xsd" Id="schemas.wix.gaming.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="XmlXsd" Guid="2FB03BBC-9874-4D5B-B778-84D2F24CE688" DiskId="1"> |
|
<File Id="xml.xsd" Name="xml.xsd" Source="..\..\data\schemas\xml.xsd" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="TemplatesFolder" Name="templates"> |
|
<Directory Id="FileTemplatesFolder" Name="file"> |
|
<Directory Id="CSharpFileTemplatesFolder" Name="CSharp"> |
|
<Component Guid="6F4016F3-AAE0-465F-893B-AE694EA309C2" Id="CSharpFileTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\file\CSharp\FileCategorySortOrder.xml" Id="CSharpFileCategorySortOrder.xml" Name="FileCategorySortOrder.xml" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Empty.xft" Id="CSharp.Empty.xft" Name="CSharp.Empty.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.EmptyClass.xft" Id="CSharp.EmptyClass.xft" Name="CSharp.EmptyClass.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Exception.xft" Id="CSharp.Exception.xft" Name="CSharp.Exception.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Forms.Form.xft" Id="CSharp.Forms.Form.xft" Name="CSharp.Forms.Form.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Forms.UserControl.xft" Id="CSharp.Forms.UserControl.xft" Name="CSharp.Forms.UserControl.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Interface.xft" Id="CSharp.Interface.xft" Name="CSharp.Interface.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Patterns.Singleton.xft" Id="CSharp.Patterns.Singleton.xft" Name="CSharp.Patterns.Singleton.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.UnitTest.xft" Id="CSharp.UnitTest.xft" Name="CSharp.UnitTest.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebControl.xft" Id="CSharp.Web.WebControl.xft" Name="CSharp.Web.WebControl.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebForm.xft" Id="CSharp.Web.WebForm.xft" Name="CSharp.Web.WebForm.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebService.xft" Id="CSharp.Web.WebService.xft" Name="CSharp.Web.WebService.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebHandler.xft" Id="CSharp.Web.WebHandler.xft" Name="CSharp.Web.WebHandler.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFFlowDocument.xft" Id="CSharp.WPFFlowDocument.xft" Name="CSharp.WPFFlowDocument.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFPage.xft" Id="CSharp.WPFPage.xft" Name="CSharp.WPFPage.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFPageFunction.xft" Id="CSharp.WPFPageFunction.xft" Name="CSharp.WPFPageFunction.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFResourceDictionary.xft" Id="CSharp.WPFResourceDictionary.xft" Name="CSharp.WPFResourceDictionary.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFUserControl.xft" Id="CSharp.WPFUserControl.xft" Name="CSharp.WPFUserControl.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFWindow.xft" Id="CSharp.WPFWindow.xft" Name="CSharp.WPFWindow.xft" /> |
|
</Component> |
|
<Component Guid="16055582-32EE-4418-A06B-488AC5EC79E4" Id="CSharpStructTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.Struct.xft" Id="CSharp.Struct.xft" Name="CSharp.Struct.xft" /> |
|
</Component> |
|
<Component Guid="3ffcfcc0-6f9b-11db-9fe1-0800200c9a66" Id="CSharpConfigurationFileTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationElement.xft" Id="CSharp.ConfigurationElement.xft" Name="CSharp.ConfigurationElement.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationElementCollection.xft" Id="CSharp.ConfigurationElementCollection.xft" Name="CSharp.ConfigurationElementCollection.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationSection.xft" Id="CSharp.ConfigurationSection.xft" Name="CSharp.ConfigurationSection.xft" /> |
|
<File Source="..\..\data\templates\file\CSharp\ConfigurationElement.cs" Id="ConfigurationElement.cs" Name="ConfigurationElement.cs" /> |
|
<File Source="..\..\data\templates\file\CSharp\ConfigurationElementCollection.cs" Id="ConfigurationElementCollection.cs" Name="ConfigurationElementCollection.cs" /> |
|
<File Source="..\..\data\templates\file\CSharp\ConfigurationSection.cs" Id="ConfigurationSection.cs" Name="ConfigurationSection.cs" /> |
|
</Component> |
|
<Component Guid="C138E7CD-608E-4B51-8C43-1D716A6DDE70" Id="CSharpRecentFilesCollectionTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\CSharp\CSharp.RecentFilesCollection.xft" Name="CSharp.RecentFilesCollection.xft" Id="CSharp.RecentFilesCollection.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C6B92F2F-CE69-4179-BF44-F81E21CBC207" Id="CSharpRecentFilesCollectionTemplateRecentFileElementClass"> |
|
<File Source="..\..\data\templates\file\CSharp\RecentFileElement.cs" Name="RecentFileElement.cs" Id="RecentFileElement.cs" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="47C2A81B-8BC1-4762-BE7F-8989E8DE0703" Id="CSharpRecentFilesCollectionTemplateRecentFilesCollectionClass" DiskId="1"> |
|
<File Source="..\..\data\templates\file\CSharp\RecentFilesCollection.cs" Name="RecentFilesCollection.cs" Id="RecentFilesCollection.cs" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="MiscFileTemplatesFolder" Name="Misc"> |
|
<Component Guid="F47EE9EB-321F-4D98-A373-BFE2C2D801D0" Id="EmptyHTMLFileTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\EmptyHTMLFile.xft" Id="EmptyHTMLFile.xft" Name="EmptyHTMLFile.xft" /> |
|
</Component> |
|
<Component Guid="861BC115-F99D-4492-AB4E-E7DA2DF0C60A" Id="EmptyMsBuildFileTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\EmptyMsBuildFile.xft" Id="EmptyMsBuildFile.xft" Name="EmptyMsBuildFile.xft" /> |
|
</Component> |
|
<Component Guid="AE6F11B0-7C9F-49F8-A0EA-7140A399F670" Id="EmptyResourceFileTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\EmptyResourceFile.xft" Id="EmptyResourceFile.xft" Name="EmptyResourceFile.xft" /> |
|
</Component> |
|
<Component Guid="1D716764-378A-4539-80B2-98D6BA4C2FAB" Id="EmptyTextFileTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\EmptyTextFile.xft" Id="EmptyTextFile.xft" Name="EmptyTextFile.xft" /> |
|
</Component> |
|
<Component Guid="4E281CDB-E0FB-4583-9B06-A01C5778DE60" Id="EmptyXMLFileTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\EmptyXMLFile.xft" Id="EmptyXMLFile.xft" Name="EmptyXMLFile.xft" /> |
|
</Component> |
|
<Component Guid="DC3D0C22-B117-4FD8-AFF9-77B0CB36ECD1" Id="AppConfigFileTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\AppConfigFile.xft" Id="AppConfigFile.xft" Name="AppConfigFile.xft" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SharpDevelopFileTemplatesFolder" Name="SharpDevelop"> |
|
<Component Guid="5CD9262F-7A3B-4F28-94FD-43693E669E2B" Id="SharpDevelopFileTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\file\SharpDevelop\SimpleCommand.xft" Id="SimpleCommand.xft" Name="SimpleCommand.xft" /> |
|
<File Source="..\..\data\templates\file\SharpDevelop\AddInOptions.xft" Id="AddInOptions.xft" Name="AddInOptions.xft" /> |
|
<File Source="..\..\data\templates\file\SharpDevelop\ExampleMenuCommand.xft" Id="ExampleMenuCommand.xft" Name="ExampleMenuCommand.xft" /> |
|
<File Source="..\..\data\templates\file\SharpDevelop\ExampleOptionPanel.xft" Id="ExampleOptionPanel.xft" Name="ExampleOptionPanel.xft" /> |
|
<File Source="..\..\data\templates\file\SharpDevelop\ExamplePad.xft" Id="ExamplePad.xft" Name="ExamplePad.xft" /> |
|
<File Source="..\..\data\templates\file\SharpDevelop\ExampleView.xft" Id="ExampleView.xft" Name="ExampleView.xft" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="VBNetFileTemplatesFolder" Name="VBNet"> |
|
<Component Id="VBNetTemplatesFileCategorySortOrderXml" Guid="420F6EAA-8F64-4837-BDE4-034E7C40F112" DiskId="1"> |
|
<File Id="VBNetFileTemplateFileCategorySortOrder.xml" Name="FileCategorySortOrder.xml" Source="..\..\data\templates\file\VBNet\FileCategorySortOrder.xml" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetEmptyFileTemplate" Guid="92D5B825-D5A1-4164-959D-0D1DBE4ADE0D" DiskId="1"> |
|
<File Id="VBNet.Empty.xft" Name="VBNet.Empty.xft" Source="..\..\data\templates\file\VBNet\VBNet.Empty.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetEmptyClassFileTemplate" Guid="B1875095-14EF-459E-8546-A281019EBBCE" DiskId="1"> |
|
<File Id="VBNet.EmptyClass.xft" Name="VBNet.EmptyClass.xft" Source="..\..\data\templates\file\VBNet\VBNet.EmptyClass.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetFormFileTemplate" Guid="8DD19254-4E5E-4119-A3A8-7F0608B02B8C" DiskId="1"> |
|
<File Id="VBNet.VBNet.Forms.Form.xft" Name="VBNet.Forms.Form.xft" Source="..\..\data\templates\file\VBNet\VBNet.Forms.Form.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetUserControlFileTemplate" Guid="BCBD5075-D39A-4D86-900F-EAACFD7644C4" DiskId="1"> |
|
<File Id="VBNet.VBNet.Forms.UserControl.xft" Name="VBNet.Forms.UserControl.xft" Source="..\..\data\templates\file\VBNet\VBNet.Forms.UserControl.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetInterfaceFileTemplate" Guid="18F3CE0E-A859-48E4-A3E7-1666E8CE012E" DiskId="1"> |
|
<File Id="VBNet.VBNet.Interface.xft" Name="VBNet.Interface.xft" Source="..\..\data\templates\file\VBNet\VBNet.Interface.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetModuleFileTemplate" Guid="1ACB5E8A-CC5E-4673-A68E-A7F52DCB9DB7" DiskId="1"> |
|
<File Id="VBNet.VBNet.Module.xft" Name="VBNet.Module.xft" Source="..\..\data\templates\file\VBNet\VBNet.Module.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetMyExtensionClassFileTemplate" Guid="EB4D7763-0491-4888-A288-07A3539CD36B" DiskId="1"> |
|
<File Id="VBNet.MyExtensionClass.xft" Name="VBNet.MyExtensionClass.xft" Source="..\..\data\templates\file\VBNet\VBNet.MyExtensionClass.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetPatternsSingletonFileTemplate" Guid="4912461E-4703-4F3B-9DDB-73D1A720FA48" DiskId="1"> |
|
<File Id="VBNet.Patterns.Singleton.xft" Name="VBNet.Patterns.Singleton.xft" Source="..\..\data\templates\file\VBNet\VBNet.Patterns.Singleton.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetUnitTestFileTemplate" Guid="D5D60A9C-FE68-450F-9C65-6FE13741734C" DiskId="1"> |
|
<File Id="VBNet.UnitTest.xft" Name="VBNet.UnitTest.xft" Source="..\..\data\templates\file\VBNet\VBNet.UnitTest.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetExceptionFileTemplate" Guid="907F9938-D226-40C9-A0FF-A4D7744E5B17" DiskId="1"> |
|
<File Id="VBNet.Exception.xft" Name="VBNet.Exception.xft" Source="..\..\data\templates\file\VBNet\VBNet.Exception.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetStructureFileTemplate" Guid="BC352A19-6F6C-4532-B0CF-4D1244C3FA63" DiskId="1"> |
|
<File Id="VBNet.Structure.xft" Name="VBNet.Structure.xft" Source="..\..\data\templates\file\VBNet\VBNet.Structure.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWebControlFileTemplate" Guid="9BF5162E-D3DD-46BC-A845-249733B4B37E" DiskId="1"> |
|
<File Id="VBNet.Web.WebControl.xft" Name="VBNet.Web.WebControl.xft" Source="..\..\data\templates\file\VBNet\VBNet.Web.WebControl.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWebFormFileTemplate" Guid="AFC4CC3D-55E6-47A5-8DB1-97DCE34BFE3B" DiskId="1"> |
|
<File Id="VBNet.Web.WebForm.xft" Name="VBNet.Web.WebForm.xft" Source="..\..\data\templates\file\VBNet\VBNet.Web.WebForm.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWebHandlerFileTemplate" Guid="445D6E1E-4280-4E61-A01E-D12D65C33303" DiskId="1"> |
|
<File Id="VBNet.Web.WebHandler.xft" Name="VBNet.Web.WebHandler.xft" Source="..\..\data\templates\file\VBNet\VBNet.Web.WebHandler.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWebServiceFileTemplate" Guid="E920D1F5-60EB-4FFC-9E78-8CD4C65AD02C" DiskId="1"> |
|
<File Id="VBNet.Web.WebService.xft" Name="VBNet.Web.WebService.xft" Source="..\..\data\templates\file\VBNet\VBNet.Web.WebService.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWPFFlowDocumentFileTemplate" Guid="CA1F4A0A-C925-4A70-A399-6B88E6013DF7" DiskId="1"> |
|
<File Id="VBNet.WPFFlowDocument.xft" Name="VBNet.WPFFlowDocument.xft" Source="..\..\data\templates\file\VBNet\VBNet.WPFFlowDocument.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWPFPageFileTemplate" Guid="B6FDFB3C-52C7-43FC-A6DE-F2637E6FD5E0" DiskId="1"> |
|
<File Id="VBNet.WPFPage.xft" Name="VBNet.WPFPage.xft" Source="..\..\data\templates\file\VBNet\VBNet.WPFPage.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWPFPageFunctionFileTemplate" Guid="EE8BA0D0-5503-4FF6-AA84-BA60BE43B68A" DiskId="1"> |
|
<File Id="VBNet.WPFPageFunction.xft" Name="VBNet.WPFPageFunction.xft" Source="..\..\data\templates\file\VBNet\VBNet.WPFPageFunction.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWPFResourceDictionaryFileTemplate" Guid="8A5ECBA7-9052-4648-84F4-6ECC73B37A12" DiskId="1"> |
|
<File Id="VBNet.WPFResourceDictionary.xft" Name="VBNet.WPFResourceDictionary.xft" Source="..\..\data\templates\file\VBNet\VBNet.WPFResourceDictionary.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWPFUserControlFileTemplate" Guid="B00822BB-A76E-4B63-9926-A5FB7FAF3835" DiskId="1"> |
|
<File Id="VBNet.WPFUserControl.xft" Name="VBNet.WPFUserControl.xft" Source="..\..\data\templates\file\VBNet\VBNet.WPFUserControl.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="VBNetWPFWindowFileTemplate" Guid="43DEB1E6-4A14-4F78-BEC0-BC20F30876D4" DiskId="1"> |
|
<File Id="VBNet.WPFWindow.xft" Name="VBNet.WPFWindow.xft" Source="..\..\data\templates\file\VBNet\VBNet.WPFWindow.xft" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="ProjectTemplatesFolder" Name="project"> |
|
<Directory Id="CSharpProjectTemplatesFolder" Name="CSharp"> |
|
<Component Guid="888085CF-91C6-4669-97AF-BA99B3D9D38B" Id="CSharpProjectTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\project\CSharp\WPFNavigationApplication.xpt" Id="CSharpWPFNavigationApplication.xpt" Name="WPFNavigationApplication.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\ConsoleProject.xpt" Id="CSharpConsoleProject.xpt" Name="ConsoleProject.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\ControlLibrary.xpt" Id="CSharpControlLibrary.xpt" Name="ControlLibrary.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\DefaultAssemblyInfo.cs" Id="CSharpDefaultAssemblyInfo.cs" Name="DefaultAssemblyInfo.cs" /> |
|
<File Source="..\..\data\templates\project\CSharp\Direct3DProject.xpt" Id="CSharpDirect3DProject.xpt" Name="Direct3DProject.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\EmptyProject.xpt" Id="CSharpEmptyProject.xpt" Name="EmptyProject.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\FormsProject.xpt" Id="CSharpFormsProject.xpt" Name="FormsProject.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\Library.xpt" Name="Library.xpt" Id="CSharpLibrary.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\ProjectCategorySortOrder.xml" Id="CSharpProjectCategorySortOrder.xml" Name="ProjectCategorySortOrder.xml" /> |
|
<File Source="..\..\data\templates\project\CSharp\Service.xpt" Name="Service.xpt" Id="CSharpService.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\SharedAddin.xpt" Id="CSharpSharedAddin.xpt" Name="SharedAddin.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\SharpDevelopAddin.xpt" Id="CSharpSharpDevelopAddin.xpt" Name="SharpDevelopAddin.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\SharpDevelopMacro.xpt" Id="CSharpSharpDevelopMacro.xpt" Name="SharpDevelopMacro.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\WebpageProject.xpt" Id="CSharpWebpageProject.xpt" Name="WebpageProject.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\WPFApplication.xpt" Id="CSharpWPFApplication.xpt" Name="WPFApplication.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\SilverlightApplication.xpt" Id="CSharpSilverlightApplication.xpt" Name="SilverlightApplication.xpt" /> |
|
</Component> |
|
<Component Guid="9D156515-C54F-4DAB-AD66-40E44C28E56C" Id="CSharpProjectSharpDevelopCustomToolTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\project\CSharp\SharpDevelopCustomTool.xpt" Id="SharpDevelopCustomTool.xpt" Name="SharpDevelopCustomTool.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\SharpDevelopCustomToolTemplate.xft.xml" Id="SharpDevelopCustomToolTemplate.xft.xml" Name="SharpDevelopCustomToolTemplate.xft.xml" /> |
|
</Component> |
|
<Component Guid="2EBDC2FE-A2C9-4023-BC86-0E688B5897A3" Id="CSharpNotifyIconProjectTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\project\CSharp\NotifyIcon.xpt" Id="NotifyIcon.xpt" Name="NotifyIcon.xpt" /> |
|
<File Source="..\..\data\templates\project\CSharp\NotifyIconResources.resx" Id="NotifyIconResources.resx" Name="NotifyIconResources.resx" /> |
|
</Component> |
|
<Component Guid="7D1DCA03-CB13-4516-B232-028F53B096BF" Id="CSharpWebServiceProjectTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\project\CSharp\WebService.xpt" Id="WebService.xpt" Name="WebService.xpt" /> |
|
</Component> |
|
<Component Guid="084FDE9A-C356-4D88-8718-00D53478225A" Id="WPFAssemblyInfoTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\project\CSharp\WPFAssemblyInfo.cs" Id="WPFAssemblyInfoTemplate" Name="WPFAssemblyInfo.cs" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="MiscProjectTemplatesFolder" Name="Misc"> |
|
<Component Guid="F9A7F832-6EC8-4B15-A037-146BD028C9D5" Id="MiscProjectTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\project\Misc\BlankCombine.xpt" Id="BlankCombine.xpt" Name="BlankCombine.xpt" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="VBNetProjectTemplatesFolder" Name="VBNet"> |
|
<Component Guid="56C1A294-4C66-49AE-B5B4-2EA43E9FD028" Id="VBNetProjectTemplates" DiskId="1"> |
|
<File Source="..\..\data\templates\project\VBNet\SharpDevelopMacro.xpt" Id="VBNetSharpDevelopMacro.xpt" Name="SharpDevelopMacro.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\ConsoleProject.xpt" Id="VBNetConsoleProject.xpt" Name="ConsoleProject.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\ControlLibrary.xpt" Id="VBNetControlLibrary.xpt" Name="ControlLibrary.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\DefaultAssemblyInfo.vb" Id="VBNetDefaultAssemblyInfo.vb" Name="DefaultAssemblyInfo.vb" /> |
|
<File Source="..\..\data\templates\project\VBNet\Direct3DProject.xpt" Id="VBNetDirect3DProject.xpt" Name="Direct3DProject.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\EmptyProject.xpt" Id="VBNetEmptyProject.xpt" Name="EmptyProject.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\FormsProject.xpt" Id="VBNetFormsProject.xpt" Name="FormsProject.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\Library.xpt" Name="Library.xpt" Id="VBNetLibrary.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\ProjectCategorySortOrder.xml" Id="VBNetProjectCategorySortOrder.xml" Name="ProjectCategorySortOrder.xml" /> |
|
<File Source="..\..\data\templates\project\VBNet\Service.xpt" Name="Service.xpt" Id="VBNetService.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\SharedAddin.xpt" Id="VBNetSharedAddin.xpt" Name="SharedAddin.xpt" /> |
|
<File Source="..\..\data\templates\project\VBNet\SharpDevelopAddin.xpt" Id="VBNetSharpDevelopAddin.xpt" Name="SharpDevelopAddin.xpt" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="73EAC135-57B6-46C0-9F24-70A347B9AAC8" Id="ExampleProjectTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\project\ComplexExample.xpt.test" Id="ComplexExample.xpt.test" Name="ComplexExample.xpt.test" /> |
|
</Component> |
|
<Component Guid="56D8230D-F249-4BC8-A2A3-0BC800F29253" Id="AddInWritingHelp" DiskId="1"> |
|
<File Source="..\..\data\templates\project\AddInWritingHelp.txt" Id="AddInWritingHelp.txt" Name="AddInWritingHelp.txt" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="AddInsFolder" Name="AddIns"> |
|
<Component Guid="BD536EB3-6629-4699-9083-673B6175E044" Id="ICSharpCode.SharpDevelop.addin" DiskId="1"> |
|
<File Source="..\..\AddIns\ICSharpCode.SharpDevelop.addin" Id="ICSharpCode.SharpDevelop.addin" Name="ICSharpCode.SharpDevelop.addin" /> |
|
</Component> |
|
<Directory Id="AnalysisFolder" Name="Analysis"> |
|
<Directory Id="CodeAnalysisFolder" Name="CodeAnalysis"> |
|
<Component Guid="6CF33D51-953D-4E5F-840C-7FDCFD757520" Id="CodeAnalysisFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Analysis\CodeAnalysis\CodeAnalysis.dll" Id="CodeAnalysis.dll" Name="CodeAnalysis.dll" Assembly=".net" AssemblyApplication="CodeAnalysis.dll" AssemblyManifest="CodeAnalysis.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Analysis\CodeAnalysis\CodeAnalysis.addin" Id="CodeAnalysis.addin" Name="CodeAnalysis.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="CodeCoverageFolder" Name="CodeCoverage"> |
|
<Component Guid="86A8B8D1-9FFD-46A4-84F8-2BD530E1F83E" Id="CodeCoverageFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Analysis\CodeCoverage\CodeCoverage.dll" Id="CodeCoverage.dll" Name="CodeCoverage.dll" Assembly=".net" AssemblyApplication="CodeCoverage.dll" AssemblyManifest="CodeCoverage.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Analysis\CodeCoverage\CodeCoverage.addin" Id="CodeCoverage.addin" Name="CodeCoverage.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="UnitTestingFolder" Name="UnitTesting"> |
|
<Component Guid="F2F7F12D-1920-49BC-86B0-65B5A1B76516" Id="UnitTestingAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Analysis\UnitTesting\UnitTesting.dll" Id="UnitTesting.dll" Name="UnitTesting.dll" Assembly=".net" AssemblyApplication="UnitTesting.dll" AssemblyManifest="UnitTesting.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Analysis\UnitTesting\UnitTesting.addin" Id="UnitTesting.addin" Name="UnitTesting.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SourceAnalysis" Name="SourceAnalysis"> |
|
<Component Guid="C9D099BC-CF4D-404A-BB2F-B13D4541DA0F" Id="SharpDevelopSourceAnalysisTargets" DiskId="1"> |
|
<File Source="..\..\AddIns\Analysis\SourceAnalysis\SharpDevelop.SourceAnalysis.targets" Name="SharpDevelop.SourceAnalysis.targets" Id="SharpDevelop.SourceAnalysis.targets" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="4E61BF16-0C2E-424A-8D1B-80F89B3F456B" Id="SourceAnalysisAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\Analysis\SourceAnalysis\SourceAnalysis.addin" Name="SourceAnalysis.addin" Id="SourceAnalysis.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C4A33C3E-91B6-4984-86B1-07C5C49C180D" Id="SourceAnalysisDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Analysis\SourceAnalysis\SourceAnalysis.dll" Name="SourceAnalysis.dll" Id="SourceAnalysis.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="SourceAnalysis.dll" AssemblyManifest="SourceAnalysis.dll" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="BackendBindingsFolder" Name="BackendBindings"> |
|
<Directory Id="BooBindingFolder" Name="BooBinding"> |
|
<Directory Id="BooTemplatesFolder" Name="Templates"> |
|
<Component Guid="9631E95B-711B-4328-869F-1E53FD264FFA" Id="BooConsoleProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="Templates.ConsoleProject2.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="548B93F9-1FB8-43BA-91A1-537BEECD0B14" Id="DefaultAssemblyInfoBooTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\DefaultAssemblyInfo.boo" Name="DefaultAssemblyInfo.boo" Id="DefaultAssemblyInfo.boo" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="4FE739A1-11A8-4735-A9C5-726F4018D6C4" Id="BooEmptyFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\Empty.xft" Name="Empty.xft" Id="Empty.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C9363F47-BA44-4632-8918-DADA2159817A" Id="BooEmptyClassTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="EmptyClass.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="84390147-1609-4464-8F12-9DCDCCE3FF60" Id="BooFormTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\Form.xft" Name="Form.xft" Id="Form.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="117E4068-A745-446E-A07D-335ADCCABB56" Id="BooFormsProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\FormsProject.xpt" Name="FormsProject.xpt" Id="FormsProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="1E367FC3-33C7-45D4-9748-3A45DEC09EC8" Id="BooLibraryProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Templates\Library.xpt" Name="Library.xpt" Id="Library.xpt" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="0E8D9201-2A18-441B-8634-1E87273872DC" Id="BooLangInterpreterDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="7BA980AC-14A6-4330-B8F3-D00634171097" Id="BooLangCodeDomDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="B0B5598D-31AA-4A28-8456-7CE4C904A2DA" Id="BooLangCompilerDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="4F60B420-1ABF-4B39-92C9-796B8CAF699E" Id="BooLangDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="9D3C8105-B90E-4312-AF93-1B0217CE4A1B" Id="BooLangExtensionsDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="120CD691-2ADD-4C6C-AF03-5F3EB88BAF78" Id="BooLangParserDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="C3CAD837-20D3-446C-B72F-CB907CB60252" Id="BooLangUsefulDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="7D38D006-2248-4FC1-983A-25EB0141FC3C" Id="BooMicrosoftBuildTargets" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.targets" Name="Boo.Microsoft.Build.targets" Id="Boo.Microsoft.Build.targets" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="6094FA81-9C8C-407C-8FB7-F03CBE91E81F" Id="BooMicrosoftBuildTasksDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="92AF15AB-E899-4E80-872E-EBEC92F0FCC9" Id="BooBindingAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\BooBinding.addin" Name="BooBinding.addin" Id="BooBinding.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="EA750ED6-ED19-4892-9A41-78883116F061" Id="BooBindingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\BooBinding.dll" Name="BooBinding.dll" Id="BooBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="BooBinding.dll" AssemblyManifest="BooBinding.dll" /> |
|
</Component> |
|
<Component Guid="8F2E8A40-28D8-4B11-9278-CE7D6C1E4291" Id="BoocExe" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\booc.exe" Name="booc.exe" Id="booc.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="booc.exe" AssemblyManifest="booc.exe" /> |
|
</Component> |
|
<Component Guid="AA1A31D7-906E-48AA-B29C-FA0333C8EE5A" Id="BoocExeConfig" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\booc.exe.config" Name="booc.exe.config" Id="booc.exe.config" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="9BB883E9-C7E0-451B-8A48-E6A22EF6DC5A" Id="BoocRsp" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\booc.rsp" Name="booc.rsp" Id="booc.rsp" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="6AAC2867-DBA1-4AFA-830B-1FE0A918BA11" Id="NRefactoryToBooConverterDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\NRefactoryToBooConverter.dll" Name="NRefactoryToBooConverter.dll" Id="NRefactoryToBooConverter.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="NRefactoryToBooConverter.dll" AssemblyManifest="NRefactoryToBooConverter.dll" /> |
|
</Component> |
|
<Component Guid="E80EF895-720E-4F38-AFAF-9E33B3D9415E" Id="BooLangPatternMatchingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\BooBinding\Boo.Lang.PatternMatching.dll" Name="Boo.Lang.PatternMatching.dll" Id="Boo.Lang.PatternMatching.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="CSharpBindingFolder" Name="CSharpBinding"> |
|
<Component Guid="1E6F20EC-6BF4-45C0-AE99-319FBF568BD1" Id="CSharpBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\CSharpBinding\CSharpBinding.dll" Id="CSharpBinding.dll" Name="CSharpBinding.dll" Assembly=".net" AssemblyApplication="CSharpBinding.dll" AssemblyManifest="CSharpBinding.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\BackendBindings\CSharpBinding\CSharpBinding.addin" Id="CSharpBinding.addin" Name="CSharpBinding.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="VBNetBindingFolder" Name="VBNetBinding"> |
|
<Component Guid="0F51B5A5-517F-40B3-932A-A0A693926E67" Id="VBNetBindingFiles" DiskId="1"> |
|
<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" /> |
|
<File Source="..\..\AddIns\BackendBindings\VBNetBinding\VBNetBinding.addin" Id="VBNetBinding.addin" Name="VBNetBinding.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="WixBindingFolder" Name="WixBinding"> |
|
<Component Guid="A54D7821-BBFD-49E9-8FFB-1AB224E25521" Id="WixBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\WixBinding.dll" Id="WixBinding.dll" Name="WixBinding.dll" Assembly=".net" AssemblyApplication="WixBinding.dll" AssemblyManifest="WixBinding.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\SetupDialogControlLibrary.sdcl" Id="SetupDialogControlLibrary.sdcl" Name="SetupDialogControlLibrary.sdcl" /> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\WixBinding.addin" Id="WixBinding.addin" Name="WixBinding.addin" /> |
|
</Component> |
|
<Directory Id="WixBindingTemplatesFolder" Name="Templates"> |
|
<Component Id="EmptyWixFileTemplate" DiskId="1" Guid="51546D91-43BA-4311-8E16-34AC9E1BFC7A"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixFile.xft" Id="EmptyWixFile.xft" Name="EmptyWixFile.xft" /> |
|
</Component> |
|
<Component Id="WixDefaultLicenseRtf" DiskId="1" Guid="A4E7062F-30A7-474F-8DBD-47652F12548E"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\DefaultLicense.rtf" Id="DefaultLicense.rtf" Name="DefaultLicense.rtf" /> |
|
</Component> |
|
<Component Guid="C880DD6E-EFD9-436D-8CC3-B91A45BB53E1" DiskId="1" Id="WixUIFeatureTreeProjectTemplate"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIFeatureTreeProject.xpt" Id="WixUIFeatureTreeProject.xpt" Name="WixUIFeatureTreeProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="5F910AA8-EA41-46C7-9B8B-9DA6DAC835F0" Id="WixUIInstallDirProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIInstallDirProject.xpt" Id="WixUIInstallDirProject.xpt" Name="WixUIInstallDirProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="36FF353F-2C22-42D1-9E2A-B2CE5FC2BA56" Id="WixUIMinimalProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIMinimalProject.xpt" Id="WixUIMinimalProject.xpt" Name="WixUIMinimalProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="D930CB0E-1554-457C-A274-FF58D10D3659" Id="WixUIMondoProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIMondoProject.xpt" Id="WixUIMondoProject.xpt" Name="WixUIMondoProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="5226A62B-AE20-42E9-8921-446B4BE6E95C" Id="EmptyWixProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixProject.xpt" Name="EmptyWixProject.xpt" Id="EmptyWixProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="533F3774-9D09-4F72-9218-5CA4AD4217C0" Id="EmptyWixDialogTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixDialog.xft" Name="EmptyWixDialog.xft" Id="EmptyWixDialog.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="20656F0D-CAE2-4B19-B5DE-ABF842A5939B" Id="WixDialogTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixDialog.xft" Name="WixDialog.xft" Id="WixDialog.xft" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="PythonBinding" Name="PythonBinding"> |
|
<Component Guid="AF97A77A-F986-4284-BC0A-9568B1419FC1" Id="IpyExe" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\ipy.exe" Name="ipy.exe" Id="ipy.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ipy.exe" AssemblyManifest="ipy.exe"> |
|
<netfx:NativeImage Id="IpyExeNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Component Guid="A7C0416F-8B3F-4C64-A25C-8B48AADD957D" Id="IronPythonDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.dll" Id="IronPython.dll" Name="IronPython.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.dll" AssemblyManifest="IronPython.dll"> |
|
<netfx:NativeImage Id="IronPythonDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Component Guid="ADBB3544-DE83-4676-A95E-3BC497ABC94D" Id="PythonBuildTasksDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="CD84F3F1-F3E8-4EF2-A1BD-8092076EBBB8" Id="PythonBindingAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\PythonBinding.addin" Id="PythonBinding.addin" Name="PythonBinding.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="AE71C296-051C-4C19-90B0-2C261D58CCFA" Id="PythonBindingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\PythonBinding.dll" Id="PythonBinding.dll" Name="PythonBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PythonBinding.dll" AssemblyManifest="PythonBinding.dll" /> |
|
</Component> |
|
<Component Guid="A74FF259-8D05-4FA5-9664-63F2ECB6E568" Id="SharpDevelopBuildPythonTargets" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\SharpDevelop.Build.Python.targets" Id="SharpDevelop.Build.Python.targets" Name="SharpDevelop.Build.Python.targets" KeyPath="yes" /> |
|
</Component> |
|
<Directory Id="PythonTemplates" Name="Templates"> |
|
<Component Guid="2F5F1DC5-A04F-4FF2-8B68-BC803B19F80A" Id="PythonConsoleProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\ConsoleProject.xpt" Id="Templates.ConsoleProject.xpt" Name="ConsoleProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="1F303642-32B5-4B95-A8A8-3EEB2ED76F21" Id="PythonEmptyFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\Empty.xft" Name="Empty.xft" Id="Templates.Empty.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="99E81C31-321C-4A15-A502-7E5E27891810" Id="PythonEmptyClassTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyClass.xft" Id="Templates.EmptyClass.xft" Name="EmptyClass.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C7F4F370-4070-4BFD-9325-2D2FFEC27A5A" Id="PythonEmptyFormTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyForm.xft" Id="EmptyForm.xft" Name="EmptyForm.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="FBEF6AC5-7658-46C3-9805-239B4223CAB3" Id="PythonEmptyUserControlTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyUserControl.xft" Id="EmptyUserControl.xft" Name="EmptyUserControl.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C077D46F-D6EF-4187-9715-3EAD8A43A1EC" Id="PythonFormsProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\FormsProject.xpt" Id="Templates.FormsProject.xpt" Name="FormsProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="6AE9C385-3B6A-4DD6-9CB9-92EDEEEF3FCF" Id="PythonLibraryProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\LibraryProject.xpt" Id="Templates.LibraryProject.xpt" Name="LibraryProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="DE04B306-0C6D-434C-A6DC-6F450AAFB108" Id="IronPythonModulesDll" DiskId="1"> |
|
<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"> |
|
<netfx:NativeImage Id="IronPythonModulesDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Component Guid="5849E9E1-39E4-45B5-B2F0-B07F8A21085D" Id="MicrosoftScriptingDll" DiskId="1"> |
|
<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"> |
|
<netfx:NativeImage Id="MicrosoftScriptingDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Directory Id="PythonLib" Name="Lib"> |
|
<Component Guid="98D4136A-897A-479A-AD50-E89600C5016D" Id="PythonBindingLibRunpyPy" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\runpy.py" Name="runpy.py" Id="runpy.py" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="E091A881-9015-47A6-ADBE-EAA87A5171C3" Id="PythonBindingLibSitePy" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\site.py" Name="site.py" Id="site.py" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="240EC6F6-6377-4840-A1C9-BDC15F653669" Id="PythonBindingLibFuturePy" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\__future__.py" Name="__future__.py" Id="__future__.py" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="694B49D9-3EDA-4B3E-AE21-C4462A99ED0D" Id="IronPythonModulesXml" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.Modules.xml" Name="IronPython.Modules.xml" Id="IronPython.Modules.xml" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="0234CFCB-0064-4D59-B39F-0C33735C9B5B" Id="IronPythonXml" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.xml" Name="IronPython.xml" Id="IronPython.xml" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="6E1D93BF-A105-4526-8BA0-13B69EEB1360" Id="MicrosoftDynamicDll" DiskId="1"> |
|
<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"> |
|
<netfx:NativeImage Id="MicrosoftDynamicDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Component Guid="8A1A4691-E6BD-451F-AA5D-BE9C716D56A0" Id="MicrosoftScriptingDebuggingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Scripting.Debugging.dll" Name="Microsoft.Scripting.Debugging.dll" Id="Microsoft.Scripting.Debugging.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Scripting.Debugging.dll" AssemblyManifest="Microsoft.Scripting.Debugging.dll"> |
|
<netfx:NativeImage Id="MicrosoftScriptingDebuggingDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> |
|
</File> |
|
</Component> |
|
<Directory Id="TestRunner" Name="TestRunner"> |
|
<Component Id="PythonBindingSdTestPy" Guid="7D87D983-8924-456E-8E66-2C6AC76C16A6" DiskId="1"> |
|
<File Id="sdtest.py" Name="sdtest.py" Source="..\..\AddIns\BackendBindings\PythonBinding\TestRunner\sdtest.py" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="PythonBindingSdTestRunnerPy" Guid="E15A20D3-BAA0-476F-9380-0B662D5C8D1E" DiskId="1"> |
|
<File Id="sdtestrunner.py" Name="sdtestrunner.py" Source="..\..\AddIns\BackendBindings\PythonBinding\TestRunner\sdtestrunner.py" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="FSharpBinding" Name="FSharpBinding"> |
|
<Component Guid="6B4F28AF-133C-4FEB-98DB-67A5405AEB12" Id="FSharpBindingAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\FSharpBinding\FSharpBinding.addin" Name="FSharpBinding.addin" Id="FSharpBinding.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="810CE373-569B-41C3-ADDA-D2F0E0EFD5DE" Id="FSharpBindingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\FSharpBinding\FSharpBinding.dll" Name="FSharpBinding.dll" Id="FSharpBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="FSharpBinding.dll" AssemblyManifest="FSharpBinding.dll" /> |
|
</Component> |
|
<Directory Id="FSharpBindingTemplates" Name="Templates"> |
|
<Component Guid="37A7695A-BA60-45A6-9BDB-FAE663D7A4C0" Id="FSharpConsoleProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\FSharpBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="FSharp.Templates.ConsoleProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="33142421-A648-4415-8C22-0F73479E0840" Id="FSharpEmptyClassTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\FSharpBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="FSharp.Templates.EmptyClass.xft" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="RubyBinding" Name="RubyBinding"> |
|
<Component Guid="7CB6802E-BC09-4796-904C-45EEAD91A5CF" Id="IrExe" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\ir.exe" Name="ir.exe" Id="ir.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ir.exe" AssemblyManifest="ir.exe" /> |
|
</Component> |
|
<Component Guid="2F7C175B-7CCD-46D2-9B4E-A942CA14145B" Id="IrExeConfig" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\ir.exe.config" Name="ir.exe.config" Id="ir.exe.config" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="1CE0CC65-3534-4357-BFB7-CB9F0C4E1495" Id="IronRubyDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\IronRuby.dll" Name="IronRuby.dll" Id="IronRuby.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronRuby.dll" AssemblyManifest="IronRuby.dll" /> |
|
</Component> |
|
<Component Guid="2B7F1625-2BAA-4A55-B186-75F7ADCF3BA8" Id="IronRubyLibrariesDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="626C0C34-EF24-443F-8A0E-6CBF0047A50A" Id="IronRubyLicenseApacheHtml" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\LICENSE.APACHE.html" Name="LICENSE.APACHE.html" Id="IronRuby.License.Apache.html" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="09FCB2E9-FA7E-40B2-8FCF-182C7DF2F5EC" Id="RubyMicrosoftDynamicDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="3E1BAAE7-D366-43B4-88CE-8D2ED5731CC6" Id="RubyMicrosoftScriptingDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="6877EFD9-7005-4BDD-80E6-FB4790436E23" Id="RubyBindingAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\RubyBinding.addin" Name="RubyBinding.addin" Id="RubyBinding.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C1185288-280B-4006-8592-6F4FAD69498D" Id="RubyBindingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\RubyBinding.dll" Name="RubyBinding.dll" Id="RubyBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.dll" AssemblyManifest="RubyBinding.dll" /> |
|
</Component> |
|
<Component Id="RubyMicrosoftScriptingMetadataDll" Guid="43F7B715-2726-4E35-B9AC-28D5B4C33180" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Directory Id="RubyTemplates" Name="Templates"> |
|
<Component Guid="6BF44E09-3910-444C-9A49-C6C811B41CFE" Id="RubyConsoleProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="RubyConsoleProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="215E4AF7-C1D3-473F-90A2-A621B42BB2CD" Id="RubyEmptyFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\Empty.xft" Name="Empty.xft" Id="RubyEmptyFile.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="B0D712C8-DCC0-48C6-B0DC-F8D6B7AF6351" Id="RubyEmptyClassFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="Templates.EmptyClass2.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="B11F038D-F71E-409C-AEB9-ED54EBA299F9" Id="RubyEmptyFormFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyForm.xft" Name="EmptyForm.xft" Id="Templates.EmptyForm.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="3F5329F7-72DE-4E44-B36C-F2EF8EED4183" Id="RubyEmptyUserControlFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyUserControl.xft" Name="EmptyUserControl.xft" Id="Templates.EmptyUserControl.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="6096D8DC-E9AE-41D2-82E3-6284E4878545" Id="RubyFormsProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\FormsProject.xpt" Name="FormsProject.xpt" Id="Templates.FormsProject1.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="BDB0208E-B04F-42F5-B3FB-97F77D6C4C7B" Id="RubyLibraryProjectTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\LibraryProject.xpt" Name="LibraryProject.xpt" Id="LibraryProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="RubyBindingTestRunner" Name="TestRunner"> |
|
<Component Id="RubyBindingSdSelectedTestsFileRb" Guid="8F37FDB9-ED10-4A13-857A-FD0BD7231D13" DiskId="1"> |
|
<File Id="RubyBinding.sdselectedtestsfile.rb" Name="sdselectedtestsfile.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdselectedtestsfile.rb" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="RubyBindingSdTestRb" Guid="2666C77A-AB65-4142-AE13-4216FA2E4AAC" DiskId="1"> |
|
<File Id="RubyBinding.sdtest.rb" Name="sdtest.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtest.rb" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="RubyBindingSdTestResultRb" Guid="618BB1E1-FCC2-452E-A244-21AD73ED480F" DiskId="1"> |
|
<File Id="RubyBinding.sdtestresult.rb" Name="sdtestresult.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestresult.rb" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="RubyBindingSdTestResultWriterRb" Guid="0E12860F-23C3-4A15-85D5-7FFAC0D243FC" DiskId="1"> |
|
<File Id="RubyBinding.sdtestresultwriter.rb" Name="sdtestresultwriter.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestresultwriter.rb" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="RubyBindingSdTestRunnerRb" Guid="4F6D3229-6A2F-4505-B0C5-9286853C19AA" DiskId="1"> |
|
<File Id="RubyBinding.sdtestrunner.rb" Name="sdtestrunner.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestrunner.rb" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="XamlBinding" Name="XamlBinding"> |
|
<Component Guid="34D119F8-F7C8-40DD-B354-FA50A3349033" Id="ICSharpCodeXamlBindingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\XamlBinding\ICSharpCode.XamlBinding.dll" Name="ICSharpCode.XamlBinding.dll" Id="ICSharpCode.XamlBinding.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="4113C6DC-D11B-45FA-9D38-D3DD0A92C280" Id="XamlBindingAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\XamlBinding\XamlBinding.addin" Name="XamlBinding.addin" Id="XamlBinding.addin" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="CppBinding" Name="CppBinding"> |
|
<Component Guid="B7C63B27-82B7-42E8-893F-5034CB153074" Id="CppBindingAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\CppBinding.addin" Name="CppBinding.addin" Id="CppBinding.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="AC3EFDF3-3063-464A-9072-1285BAAD3579" Id="CppBindingDll" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\CppBinding.dll" Name="CppBinding.dll" Id="CppBinding.dll" KeyPath="yes" /> |
|
</Component> |
|
<Directory Id="CppTemplates" Name="Templates"> |
|
<Component Guid="CD1E49C5-7037-46B0-81CE-41C3E10759E6" Id="CppBindingTemplates" DiskId="1"> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="ConsoleProject.xpt" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\DefaultAssemblyInfo.cpp" Name="DefaultAssemblyInfo.cpp" Id="DefaultAssemblyInfo.cpp" /> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\Empty.xft" Name="Empty.xft" Id="Templates.Empty1.xft" /> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="Templates.EmptyClass1.xft" /> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\Library.xpt" Name="Library.xpt" Id="Templates.Library.xpt" /> |
|
<File Source="..\..\AddIns\BackendBindings\CppBinding\Templates\UnmanagedConsoleProject.xpt" Name="UnmanagedConsoleProject.xpt" Id="UnmanagedConsoleProject.xpt" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="DisplayBindingsFolder" Name="DisplayBindings"> |
|
<Directory Id="FormsDesignerFolder" Name="FormsDesigner"> |
|
<Component Guid="14E454AB-8F83-4FB3-9EDE-92B7D5333998" Id="FormsDesignerFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.dll" Id="FormsDesigner.dll" Name="FormsDesigner.dll" Assembly=".net" AssemblyApplication="FormsDesigner.dll" AssemblyManifest="FormsDesigner.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.addin" Id="FormsDesigner.addin" Name="FormsDesigner.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="IconEditorFolder" Name="IconEditor"> |
|
<Component Guid="13031705-82B1-46D8-8749-453A6A313A3B" Id="IconEditorExe" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\IconEditor\IconEditor.exe" Id="IconEditor.exe" Name="IconEditor.exe" Assembly=".net" AssemblyApplication="IconEditor.exe" AssemblyManifest="IconEditor.exe" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="A6F985C3-09A5-4650-9A8E-239BBC737B10" Id="IconEditorAddInFiles" DiskId="1"> |
|
<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" /> |
|
<File Source="..\..\AddIns\DisplayBindings\IconEditor\IconEditorAddIn.addin" Id="IconEditorAddIn.addin" Name="IconEditorAddIn.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ResourceEditorFolder" Name="ResourceEditor"> |
|
<Component Guid="010A8620-382C-477B-9330-51A8B6C48A7A" Id="ResourceEditorFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.dll" Id="ResourceEditor.dll" Name="ResourceEditor.dll" Assembly=".net" AssemblyApplication="ResourceEditor.dll" AssemblyManifest="ResourceEditor.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.addin" Id="ResourceEditor.addin" Name="ResourceEditor.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="XmlEditorFolder" Name="XmlEditor"> |
|
<Component Guid="BD0B4E5B-CBED-49A0-850C-3EA8DFCF3B17" Id="XmlEditorFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\XmlEditor\XmlEditor.dll" Id="XmlEditor.dll" Name="XmlEditor.dll" Assembly=".net" AssemblyApplication="XmlEditor.dll" AssemblyManifest="XmlEditor.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\DisplayBindings\XmlEditor\XmlEditor.addin" Id="XmlEditor.addin" Name="XmlEditor.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ClassDiagram" Name="ClassDiagram"> |
|
<Directory Id="Resources" Name="Resources"> |
|
<Component Guid="75152D8C-5D9A-4728-AB18-62637C785A7D" Id="ClassDiagramResources" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\ClassDiagram\Resources\Bitmaps.resources" Id="Bitmaps.resources" Name="Bitmaps.resources" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="A8619065-03F6-4AF0-A1F2-81D5C810D8A3" Id="ClassDiagramAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin.addin" Id="ClassDiagram.ClassDiagramAddin.addin" Name="ClassDiagramAddin.addin" /> |
|
<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" /> |
|
</Component> |
|
<Component Guid="5F09F966-5605-4381-B346-8231DA0B1C6B" Id="ClassCanvasDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="EF2B150B-B0C4-4884-800C-BE904E520CF4" Id="DiagramsDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="AvalonEdit" Name="AvalonEdit"> |
|
<Component Guid="A3376E4E-F07D-4554-ABF5-E91F2DA918E3" Id="AvalonEditAddInAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\AvalonEdit\AvalonEdit.AddIn.addin" Name="AvalonEdit.AddIn.addin" Id="AvalonEdit.AddIn.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="28171341-2A36-49DD-ACBC-815EE648A1DA" Id="ICSharpCodeAvalonEditAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\AvalonEdit\ICSharpCode.AvalonEdit.AddIn.dll" Name="ICSharpCode.AvalonEdit.AddIn.dll" Id="ICSharpCode.AvalonEdit.AddIn.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="HexEditor" Name="HexEditor"> |
|
<Component Guid="9C299282-1F4C-485B-BEB1-9D84AC4CAA8A" Id="HexEditorAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\HexEditor\HexEditor.addin" Name="HexEditor.addin" Id="HexEditor.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="1606B107-445F-4233-B72A-D4546A8393BC" Id="HexEditorDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\HexEditor\HexEditor.dll" Name="HexEditor.dll" Id="HexEditor.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="WpfDesign" Name="WpfDesign"> |
|
<Component Guid="E529AC6C-30BE-4406-9F26-B55CAA110D3F" Id="ICSharpCodeWpfDesignAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.AddIn.dll" Name="ICSharpCode.WpfDesign.AddIn.dll" Id="ICSharpCode.WpfDesign.AddIn.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="1147F468-F5DC-49D3-9CFC-EE794FC7BBC5" Id="ICSharpCodeWpfDesignDesignerDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.Designer.dll" Name="ICSharpCode.WpfDesign.Designer.dll" Id="ICSharpCode.WpfDesign.Designer.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C454357F-4ED8-424A-8F6A-0652EC8A0AB8" Id="ICSharpCodeWpfDesignDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.dll" Name="ICSharpCode.WpfDesign.dll" Id="ICSharpCode.WpfDesign.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="DADDFB3A-A7AE-4D28-BFD6-294ECDFD9D3B" Id="ICSharpCodeWpfDesignXamlDomDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.XamlDom.dll" Name="ICSharpCode.WpfDesign.XamlDom.dll" Id="ICSharpCode.WpfDesign.XamlDom.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="E89BBA3D-D267-4E4F-8DA7-E38E864C4317" Id="WpfDesignAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\WpfDesign\WpfDesign.addin" Name="WpfDesign.addin" Id="WpfDesign.addin" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="Data" Name="Data"> |
|
<Component Guid="16E65D48-658D-4C6B-BCCB-9B5450727CFD" Id="ICSharpCodeDataAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.addin" Name="ICSharpCode.Data.addin" Id="ICSharpCode.Data.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="03DE504B-1757-49CD-A3FC-BAC7210F3565" Id="ICSharpCodeDataAddinDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Addin.dll" Name="ICSharpCode.Data.Addin.dll" Id="ICSharpCode.Data.Addin.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="48BC48FD-D6C4-471B-A19A-52EC48FDADF3" Id="ICSharpCodeDataCoreDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Core.dll" Name="ICSharpCode.Data.Core.dll" Id="ICSharpCode.Data.Core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="FAE360BA-DA88-41E8-A5C7-1DA41E98B8F2" Id="ICSharpCodeDataCoreUIDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Core.UI.dll" Name="ICSharpCode.Data.Core.UI.dll" Id="ICSharpCode.Data.Core.UI.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="AC3788E8-6068-46BA-94E0-FE17B9D057A9" Id="ICSharpCodeDataEDMDesignerCoreDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.EDMDesigner.Core.dll" Name="ICSharpCode.Data.EDMDesigner.Core.dll" Id="ICSharpCode.Data.EDMDesigner.Core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="D41C8A90-0CD0-4160-9172-1DBE3B55902D" Id="ICSharpCodeDataEDMDesignerCoreUIDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="31400415-BB2A-49C9-90DF-58F7FD0A8154" Id="ICSharpCodeDataSQLServerDll" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.SQLServer.dll" Name="ICSharpCode.Data.SQLServer.dll" Id="ICSharpCode.Data.SQLServer.dll" KeyPath="yes" /> |
|
</Component> |
|
<Directory Id="DataTemplates" Name="Templates"> |
|
<Directory Id="Files" Name="Files"> |
|
<Component Guid="2791081B-A45D-4729-952C-43C147753653" Id="CSharpEDMXXft" DiskId="1"> |
|
<File Source="..\..\AddIns\DisplayBindings\Data\Templates\Files\CSharp.EDMX.xft" Name="CSharp.EDMX.xft" Id="CSharp.EDMX.xft" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="DebuggerFolder" Name="Debugger"> |
|
<Component Guid="27C66A5A-0149-45F4-B1AF-C320FE005E6B" Id="DebuggerAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Debugger\Debugger.AddIn.addin" Id="Debugger.AddIn.addin" Name="Debugger.AddIn.addin" /> |
|
<File Source="..\..\AddIns\Debugger\Debugger.AddIn.dll" Id="Debugger.AddIn.dll" Name="Debugger.AddIn.dll" /> |
|
<File Source="..\..\AddIns\Debugger\Debugger.Core.dll" Id="Debugger.Core.dll" Name="Debugger.Core.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="MiscAddInsFolder" Name="Misc"> |
|
<Directory Id="AddInManagerFolder" Name="AddInManager"> |
|
<Component Guid="AA44E205-CCE8-46F3-B84B-D031BDB3570D" Id="AddInManagerSharpZipLibDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="DCC79FDD-A759-4CEE-A62E-C715738ABB9A" Id="AddInManagerFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\AddInManager\AddInManager.addin" Id="AddInManager.addin" Name="AddInManager.addin" /> |
|
<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" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="AddInScoutFolder" Name="AddinScout"> |
|
<Component Guid="815D3708-5A0A-4B8E-BB72-66DF8E851917" Id="AddInScoutFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\AddinScout\AddinScout.dll" Id="AddinScout.dll" Name="AddinScout.dll" Assembly=".net" AssemblyApplication="AddinScout.dll" AssemblyManifest="AddinScout.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Misc\AddinScout\AddInScout.addin" Id="AddInScout.addin" Name="AddInScout.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="FiletypeRegistererFolder" Name="FiletypeRegisterer"> |
|
<Directory Id="FileTypesFolder" Name="filetypes"> |
|
<Component Guid="389BF494-9AE6-476A-A0FE-39DB0CFE95D1" Id="FiletypeIcons" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\xml.ico" Name="xml.ico" Id="xml.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\addin.ico" Name="addin.ico" Id="addin.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\cmbx.ico" Name="cmbx.ico" Id="cmbx.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\cs.ico" Name="cs.ico" Id="cs.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\java.ico" Name="java.ico" Id="java.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\prjx.ico" Name="prjx.ico" Id="prjx.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\resx.ico" Name="resx.ico" Id="resx.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\vb.ico" Name="vb.ico" Id="vb.ico" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\xfrm.ico" Name="xfrm.ico" Id="xfrm.ico" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="6FF1EF46-B5FF-444D-879F-0E56640CABD7" Id="FiletypeRegistererFiles" DiskId="1"> |
|
<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" /> |
|
<File Source="..\..\AddIns\Misc\FiletypeRegisterer\FiletypeRegisterer.addin" Id="FiletypeRegisterer.addin" Name="FiletypeRegisterer.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="HelpViewerFolder" Name="HelpViewer"> |
|
<Component Guid="C854C30E-1765-4614-8248-F256C761CEE3" Id="HtmlHelp2Files" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\HelpViewer\HelpViewer.addin" Id="HelpViewer.addin" Name="HelpViewer.addin" /> |
|
<File Source="..\..\AddIns\Misc\HelpViewer\HelpViewer.dll" Id="HelpViewer.dll" Name="HelpViewer.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="PInvokeAddInFolder" Name="PInvokeAddIn"> |
|
<Component Guid="09DC988A-373E-4147-BA35-AF6BF0047B1A" Id="PInvokeAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\PInvokeAddIn\signatures.xml" Id="signatures.xml" Name="signatures.xml" /> |
|
<File Source="..\..\AddIns\Misc\PInvokeAddIn\PInvoke.addin" Id="PInvoke.addin" Name="PInvoke.addin" /> |
|
<File Source="..\..\AddIns\Misc\PInvokeAddIn\PInvokeAddIn.dll" Id="PInvokeAddIn.dll" Name="PInvokeAddIn.dll" Assembly=".net" AssemblyApplication="PInvokeAddIn.dll" AssemblyManifest="PInvokeAddIn.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="RegExToolkitFolder" Name="RegExpTk"> |
|
<Component Guid="B934ABC3-AD9B-4DC3-B0EE-1CA5AF2B8F82" Id="RegExToolkitFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\RegExpTk\RegExpTk.addin" Id="RegExpTk.addin" Name="RegExpTk.addin" /> |
|
<File Source="..\..\AddIns\Misc\RegExpTk\RegExpTk.dll" Name="RegExpTk.dll" Id="RegExpTk.dll" Assembly=".net" AssemblyApplication="RegExpTk.dll" AssemblyManifest="RegExpTk.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ResourceToolkitFolder" Name="ResourceToolkit"> |
|
<Component Guid="E36C699F-353D-41CC-975B-E18BEB885BA0" Id="ResourceToolkitFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\ResourceToolkit\Hornung.ResourceToolkit.addin" Id="Hornung.ResourceToolkit.addin" Name="Hornung.ResourceToolkit.addin" /> |
|
<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" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="StartPageAddInFolder" Name="StartPage"> |
|
<Component Guid="220967E5-D5AA-4207-9757-79599222D5CF" Id="StartPageAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\StartPage\StartPage.dll" Id="StartPage.dll" Name="StartPage.dll" Assembly=".net" AssemblyApplication="StartPage.dll" AssemblyManifest="StartPage.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Misc\StartPage\StartPage.addin" Id="StartPage.addin" Name="StartPage.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SubversionAddInFolder" Name="SubversionAddIn"> |
|
<Component Guid="C9B1D523-5674-4398-9073-20F57B45DD46" Id="SubversionAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\SubversionAddIn.dll" Id="SubversionAddIn.dll" Name="SubversionAddIn.dll" Assembly=".net" AssemblyApplication="SubversionAddIn.dll" AssemblyManifest="SubversionAddIn.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\ICSharpCode.Svn.addin" Id="ICSharpCode.Svn.addin" Name="ICSharpCode.Svn.addin" /> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\SharpSvn.dll" Name="SharpSvn.dll" Id="SharpSvn.dll" /> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\SharpSvn.UI.dll" Name="SharpSvn.UI.dll" Id="SharpSvn.UI.dll" /> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\SharpPlink-Win32.svnExe" Name="SharpPlink-Win32.svnExe" Id="SharpPlink_Win32.svnExe" /> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\SharpSvn-DB44-20-Win32.dll" Name="SharpSvn-DB44-20-Win32.dll" Id="SharpSvn_DB44_20_Win32.dll" /> |
|
<File Source="..\..\AddIns\Misc\SubversionAddin\SharpSvn-SASL21-23-Win32.dll" Name="SharpSvn-SASL21-23-Win32.dll" Id="SharpSvn_SASL21_23_Win32.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SearchAndReplace" Name="SearchAndReplace"> |
|
<Component Guid="A76D4EB6-0EBB-49D7-9528-2FA87C983703" Id="SearchAndReplaceFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SearchAndReplace\SearchAndReplace.addin" Id="SearchAndReplace.addin" Name="SearchAndReplace.addin" /> |
|
<File Source="..\..\AddIns\Misc\SearchAndReplace\SearchAndReplace.dll" Id="SearchAndReplace.dll" Name="SearchAndReplace.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ReflectorAddInFolder" Name="ReflectorAddIn"> |
|
<Component Guid="7909D3B7-FC01-4897-AF29-4B0C45D4680F" Id="ReflectorAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\ReflectorAddIn\ReflectorAddIn.dll" Name="ReflectorAddIn.dll" Id="ReflectorAddIn.dll" Assembly=".net" AssemblyApplication="ReflectorAddIn.dll" AssemblyManifest="ReflectorAddIn.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Misc\ReflectorAddIn\ReflectorAddIn.addin" Name="ReflectorAddIn.addin" Id="ReflectorAddIn.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SharpRefactoring" Name="SharpRefactoring"> |
|
<Component Guid="BCC6D49B-5CC9-4B5D-80DE-A70E90E67ABD" Id="SharpRefactoringAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SharpRefactoring\SharpRefactoring.addin" Name="SharpRefactoring.addin" Id="SharpRefactoring.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="F944B0F5-14EC-4DED-A7BE-BDE9299B19A6" Id="SharpRefactoringDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SharpRefactoring\SharpRefactoring.dll" Name="SharpRefactoring.dll" Id="SharpRefactoring.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="Profiler" Name="Profiler"> |
|
<Component Guid="C46A4B2C-D5DE-4548-B4A9-4B0AB8C105F3" Id="Hook32Dll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\Hook32.dll" Name="Hook32.dll" Id="Hook32.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="AC57D4D8-C5CE-4905-BB9E-D7DD2E1F218B" Id="Hook64Dll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\Hook64.dll" Name="Hook64.dll" Id="Hook64.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="FFFF6CFB-4C20-4934-85CA-51EE4BBAB219" Id="ICSharpCodeProfilerAddInAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.AddIn.addin" Name="ICSharpCode.Profiler.AddIn.addin" Id="ICSharpCode.Profiler.AddIn.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="39658202-7209-4C48-BD2F-426B5115C640" Id="ICSharpCodeProfilerAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.AddIn.dll" Name="ICSharpCode.Profiler.AddIn.dll" Id="ICSharpCode.Profiler.AddIn.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="A4130504-0AB7-4ACA-BC43-61BBD2D88415" Id="ICSharpCodeProfilerControllerDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.Controller.dll" Name="ICSharpCode.Profiler.Controller.dll" Id="ICSharpCode.Profiler.Controller.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="AF6BA5E6-0EF1-40D4-B78A-D97100F57E0F" Id="ICSharpCodeProfilerControlsDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.Controls.dll" Name="ICSharpCode.Profiler.Controls.dll" Id="ICSharpCode.Profiler.Controls.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="30373CF2-3D49-41E1-987F-5C870531FB75" Id="SystemDataSQLiteDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\System.Data.SQLite.dll" Name="System.Data.SQLite.dll" Id="Profiler.System.Data.SQLite.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="E1C27BD1-4FEA-4CAA-884F-1FD93D861426" Id="IQToolkitDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\Profiler\IQToolkit.dll" Name="IQToolkit.dll" Id="IQToolkit.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="UsageDataCollector" Name="UsageDataCollector"> |
|
<Component Guid="952BD2C8-F477-4C87-A869-80E4B5E955D6" Id="UDCSystemDataSQLiteDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\UsageDataCollector\System.Data.SQLite.dll" Name="System.Data.SQLite.dll" Id="UDC.System.Data.SQLite.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="F0D830A5-C1AE-43E4-B74C-CF78B7E8A849" Id="UsageDataCollectorAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.addin" Name="UsageDataCollector.addin" Id="UsageDataCollector.addin" /> |
|
<File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.AddIn.dll" Name="UsageDataCollector.AddIn.dll" Id="UsageDataCollector.AddIn.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="BDFB1DDB-E4AD-4D20-B7C1-21EDDEF33943" Id="UsageDataCollectorDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.dll" Name="UsageDataCollector.dll" Id="UsageDataCollector.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.xml" Name="UsageDataCollector.xml" Id="UsageDataCollector.xml" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SharpDevelopReports" Name="SharpDevelopReports"> |
|
<Component Guid="9D0B24E0-6BE3-4E0A-AE50-DFF55BAE388F" Id="SharpDevelopReportsEmptyReportFileTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SharpDevelopReports\EmptyReport.xft" Name="EmptyReport.xft" Id="SharpDevelopReportsEmptyReport.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="70F6CB6E-5776-4157-BABB-1D01960CFD42" Id="ICSharpCodeReportDesignerAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.ReportDesigner.addin" Name="ICSharpCode.ReportDesigner.addin" Id="ICSharpCode.ReportDesigner.addin" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="368CD4A5-70EA-4374-AF4E-A4328DE66680" Id="ICSharpCodeReportsAddinDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="0836040D-7E4A-42CA-A291-BE8AAB207D29" Id="ICSharpCodeReportsCoreDll" DiskId="1"> |
|
<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" /> |
|
</Component> |
|
<Component Guid="DBF1DA4F-19BA-46AF-86A4-B3228424F219" Id="IronyDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SharpDevelopReports\Irony.dll" Name="Irony.dll" Id="Irony.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="A105D4E4-2AF4-43BE-AA71-15F14DA4163B" Id="ITextSharpDll" DiskId="1"> |
|
<File Source="..\..\AddIns\Misc\SharpDevelopReports\itextsharp.dll" Name="itextsharp.dll" Id="itextsharp.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Component Guid="542E5AE1-286C-4CE6-8800-F3AFBB24531D" Id="SharpDevelopWebsiteShortcut" DiskId="1"> |
|
<!-- |
|
The choice here is to either useW the IniFile element to |
|
generate the two website shortcuts or create a |
|
SharpDevelop.url file on disk and use a File element and |
|
link to the file instead. We will use a file otherwise an |
|
upgrade will not remove the existing website shortcut. |
|
--> |
|
<File Id="SharpDevelop.url" KeyPath="yes" Name="SharpDevelop.url" Source="Files\SharpDevelop.url" /> |
|
<!-- |
|
ICE18 - Force the empty folder to be created. Even though it |
|
has sub folders the validator flags this as an error. |
|
|
|
http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp |
|
--> |
|
<CreateFolder /> |
|
</Component> |
|
<Component Id="SharpDevelopAppPathRegistrySetting" Guid="E812C3C9-1753-4535-80B9-BD8BCE7DB1A5"> |
|
<!-- |
|
App Path registry setting lives in HKLM so only add it if the |
|
user has admin rights. |
|
--> |
|
<Condition>Privileged</Condition> |
|
<RegistryValue Id="SharpDevelopAppPathRegistryKey" Key="Software\Microsoft\Windows\CurrentVersion\App Paths\SharpDevelop.exe" Root="HKLM" Value="[!SharpDevelop.exe]" Type="string" Action="write" /> |
|
</Component> |
|
<!-- |
|
Dummy components that are empty. These are used so |
|
the feature tree does not show the Network installation |
|
as an option. |
|
--> |
|
<Component Id="DummyCompleteFeatureComponent" Guid="22AB4C49-89FD-413F-8A1D-456AFB1AD611"> |
|
<!-- |
|
Fix ICE18 error. The validator thinks that the install folder |
|
could be empty so we have to use CreateFolder in this component. |
|
|
|
http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp |
|
--> |
|
<CreateFolder /> |
|
</Component> |
|
<Component Id="DummyFileAssocationFeatureComponent" Guid="F0390EC4-6B66-4823-B4F4-7F29E3D6AB54"> |
|
<!-- |
|
Fix ICE18 error. The validator thinks that the install folder |
|
could be empty so we have to use CreateFolder in this component. |
|
|
|
http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp |
|
--> |
|
<CreateFolder /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<!-- SharpDevelop Start menu folder --> |
|
<Directory Id="ProgramMenuFolder" Name="Programs"> |
|
<Component Id="SharpDevelopProgramMenuItems" Guid="A505F0F2-5971-436D-8E3E-ABDDC0B59BF7"> |
|
<!-- |
|
Fix ICE 38 by adding a dummy registry key that is the key for this shortcut. |
|
http://msdn.microsoft.com/library/en-us/msi/setup/ice38.asp |
|
--> |
|
<RegistryValue Id="SharpDevelopExeStartMenuShortcutRegistryKey" Root="HKCU" Type="string" KeyPath="yes" Key="Software\SharpDevelop4" Name="ProgramFilesShortcut" Value="1" /> |
|
<Shortcut Name="SharpDevelop 4.0" Target="[!SharpDevelop.exe]" Id="SharpDevelopExeStartMenuShortcut" WorkingDirectory="BinFolder" Icon="SharpDevelopIcon.exe" Directory="ProgramMenuFolder" /> |
|
</Component> |
|
</Directory> |
|
<!-- Desktop shortcuts --> |
|
<Directory Id="DesktopFolder" Name="Desktop"> |
|
<Component Id="DesktopFolderItems" Guid="F2FF4C2F-6282-4ABA-8DBB-E50E81B5920D"> |
|
<!-- |
|
Fix ICE 38 by adding a dummy registry key that is the key for this shortcut. |
|
http://msdn.microsoft.com/library/en-us/msi/setup/ice38.asp |
|
--> |
|
<RegistryValue Id="SharpDevelopExeDesktopShortcutRegistryKey" Type="string" Root="HKCU" KeyPath="yes" Key="Software\SharpDevelop4" Name="DesktopShortcut" Value="1" /> |
|
<Shortcut Id="SharpDevelopExeDesktopShortcut" Directory="DesktopFolder" Target="[!SharpDevelop.exe]" Name="SharpDevelop 4.0" Icon="SharpDevelopIcon.exe" WorkingDirectory="BinFolder" /> |
|
</Component> |
|
</Directory> |
|
</DirectoryRef> |
|
</Fragment> |
|
</Wix> |