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.
1514 lines
147 KiB
1514 lines
147 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="3.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. |
|
--> |
|
<netfx:NativeImage Id="SharpDevelopNGenImage" Priority="0" 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="SD.booprojfile\.booproj" Value="SD.booprojfile" /> |
|
</Component> |
|
<Component Id="SharpDevelopCombineFileAssociation" Guid="9D7E0D45-CD48-4A52-8875-939A78B8F710" DiskId="1"> |
|
<RegistryValue Id="SD.cmbxfile" Root="HKCR" Type="string" Key="SD.cmbxfile" Value="SharpDevelop 1.x Combine" KeyPath="yes" /> |
|
<RegistryValue Id="SD.cmbxfile.command" Root="HKCR" Type="string" Key="SD.cmbxfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.cmbxfile.icon" Root="HKCR" Type="string" Key="SD.cmbxfile\DefaultIcon" Value=""[#cmbx.ico]"" /> |
|
<RegistryValue Id="SD.cmbxfile.association" Root="HKCR" Type="string" Key=".cmbx" Value="SD.cmbxfile" /> |
|
</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="SharpDevelop11ProjectFileAssociation" Guid="DD3AAFF7-A307-4918-A33E-35620A2118F6" DiskId="1"> |
|
<RegistryValue Id="SD.prjxfile" Root="HKCR" Type="string" Key="SD.prjxfile" Value="SharpDevelop 1.x Project" KeyPath="yes" /> |
|
<RegistryValue Id="SD.prjxfile.command" Root="HKCR" Type="string" Key="SD.prjxfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.prjxfile.icon" Root="HKCR" Type="string" Key="SD.prjxfile\DefaultIcon" Value=""[#prjx.ico]"" /> |
|
<RegistryValue Id="SD.prjxfile.association" Root="HKCR" Type="string" Key=".prjx" Value="SD.prjxfile" /> |
|
</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="SharpDevelopXmlFormFileAssociation" Guid="621910C8-91FC-4383-85AA-7E9D786DAF84" DiskId="1"> |
|
<RegistryValue Id="SD.xfrmfile" Root="HKCR" Type="string" Key="SD.xfrmfile" Value="SharpDevelop XML Form" KeyPath="yes" /> |
|
<RegistryValue Id="SD.xfrmfile.command" Root="HKCR" Type="string" Key="SD.xfrmfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> |
|
<RegistryValue Id="SD.xfrmfile.icon" Root="HKCR" Type="string" Key="SD.xfrmfile\DefaultIcon" Value=""[#xfrm.ico]"" /> |
|
<RegistryValue Id="SD.xfrmfile.association" Root="HKCR" Type="string" Key=".xfrm" Value="SD.xfrmfile" /> |
|
</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="51BA4DA3-F0C0-4B4D-B988-5500876AE5C8"> |
|
<File Source="..\..\bin\SharpDevelop.Build.Common.targets" Id="SharpDevelop.Build.Common.targets" Name="SharpDevelop.Build.Common.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.Build.CSharp.targets" Id="SharpDevelop.Build.CSharp.targets" Name="SharpDevelop.Build.CSharp.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.Build.MSIL.targets" Id="SharpDevelop.Build.MSIL.targets" Name="SharpDevelop.Build.MSIL.targets" /> |
|
<File Source="..\..\bin\SharpDevelop.Build.VisualBasic.targets" Id="SharpDevelop.Build.VisualBasic.targets" Name="SharpDevelop.Build.VisualBasic.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" /> |
|
</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="ICSharpCodeTextEditorDll" Guid="E67D85A5-A891-4E61-9980-C1F1523C7972" DiskId="1"> |
|
<File Source="..\..\bin\ICSharpCode.TextEditor.dll" Id="ICSharpCode.TextEditor.dll" Name="ICSharpCode.TextEditor.dll" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.Sda.dll" AssemblyManifest="ICSharpCode.SharpDevelop.Sda.dll" KeyPath="yes" /> |
|
</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> |
|
<Component Id="WeifenLuoWinFormsUIDockingDll" Guid="AB160125-2828-434E-8810-BE642A77B0E5" DiskId="1"> |
|
<File Source="..\..\bin\WeifenLuo.WinFormsUI.Docking.dll" Id="WeifenLuo.WinFormsUI.Docking.dll" Name="WeifenLuo.WinFormsUI.Docking.dll" Assembly=".net" AssemblyApplication="WeifenLuo.WinFormsUI.Docking.dll" AssemblyManifest="WeifenLuo.WinFormsUI.Docking.dll" KeyPath="yes" /> |
|
</Component> |
|
<Directory Id="ToolsFolder" Name="Tools"> |
|
<Directory Id="ComponentInspectorFolder" Name="ComponentInspector"> |
|
<Component Guid="E4175768-82FD-45F4-8E7D-BB4031E97454" Id="ComponentInspectorCoreDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\ComponentInspector\ComponentInspector.Core.dll" Id="Tools.ComponentInspector.Core.dll" Name="ComponentInspector.Core.dll" Assembly=".net" AssemblyApplication="Tools.ComponentInspector.Core.dll" AssemblyManifest="Tools.ComponentInspector.Core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="59BEBE19-6AF1-4557-88C5-ED0B935EAE1C" Id="ComponentInspectorExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\ComponentInspector\ComponentInspector.exe" Id="ComponentInspector.exe" Name="ComponentInspector.exe" Assembly=".net" AssemblyApplication="ComponentInspector.exe" AssemblyManifest="ComponentInspector.exe" KeyPath="yes" /> |
|
<File Source="..\..\bin\Tools\ComponentInspector\ComponentInspector.exe.config" Id="ComponentInspector.exe.config" Name="ComponentInspector.exe.config" /> |
|
</Component> |
|
<Component Guid="F2643529-834A-4EDE-B0C2-36E0A031E997" Id="ComponentInspectorICSharpCodeCoreDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\ComponentInspector\ICSharpCode.Core.dll" Id="ComponentInspector.ICSharpCode.Core.dll" Name="ICSharpCode.Core.dll" Assembly=".net" AssemblyApplication="ComponentInspector.ICSharpCode.Core.dll" AssemblyManifest="ComponentInspector.ICSharpCode.Core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="ComponentInspectorLog4NetDll" Guid="56394DB5-3D3A-47ED-B99A-24AB2D0C5E88" DiskId="1"> |
|
<File Source="..\..\bin\Tools\ComponentInspector\log4net.dll" Name="log4net.dll" Id="ComponentInspector.log4net.dll" Assembly=".net" AssemblyApplication="ComponentInspector.log4net.dll" AssemblyManifest="ComponentInspector.log4net.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<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="D9768816-869F-4C01-A808-05A9CCCFDFFC" 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> |
|
<Directory Id="WixDocFolder" Name="doc"> |
|
<Component Guid="2F5AC556-CE36-47EA-AB6C-F8623AA4A6BE" Id="WixDocFiles" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\WiX.chm" Name="Wix.chm" Id="Wix.chm" /> |
|
<File Source="..\..\bin\Tools\Wix\doc\wix.xsd" Name="wix.xsd" Id="wix.xsd" /> |
|
<File Source="..\..\bin\Tools\Wix\doc\wixloc.xsd" Name="wixloc.xsd" Id="wixloc.xsd" /> |
|
</Component> |
|
<Component Guid="709867E5-F226-4ADF-8204-E77ED2F67EEC" Id="NetFxSchema" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\netfx.xsd" Name="netfx.xsd" Id="netfx.xsd" /> |
|
</Component> |
|
<Component Guid="6CF70F72-AB78-4122-BC7F-0CA6B3CC6E97" Id="VSExtensionSchema" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\vs.xsd" Name="vs.xsd" Id="vs.xsd" /> |
|
</Component> |
|
<Component Guid="878D4E54-755C-4D0B-967A-C78CDC7F04C9" Id="DIfxAppXsd" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\difxapp.xsd" Name="difxapp.xsd" Id="difxapp.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="38D4BD3C-F299-49B3-A5F7-5DFE9BE92830" Id="IisXsd" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\iis.xsd" Name="iis.xsd" Id="iis.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="E301BCF5-E98D-43F6-A47E-DC9BD51B70C1" Id="PsXsd" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\ps.xsd" Name="ps.xsd" Id="ps.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="474EF744-E3CF-4BED-A10E-7BC906CD1A80" Id="SqlXsd" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\sql.xsd" Name="sql.xsd" Id="sql.xsd" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="96DD82B8-5183-4C6C-BF15-455895F78A89" Id="UtilXsd" DiskId="1"> |
|
<File Source="..\..\bin\Tools\Wix\doc\util.xsd" Name="util.xsd" Id="util.xsd" KeyPath="yes" /> |
|
</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> |
|
</Directory> |
|
<Directory Id="NUnitFolder" Name="NUnit"> |
|
<Component Guid="264B36E0-A168-432B-A227-F628D0159370" Id="NUnitCoreExtensionsDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit.core.extensions.dll" Id="nunit.core.extensions.dll" Name="nunit.core.extensions.dll" Assembly=".net" AssemblyApplication="nunit.core.extensions.dll" AssemblyManifest="nunit.core.extensions.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="77AD4995-2B2B-4E93-86B2-78FEF44A2E23" Id="NUnitUiKitDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit.uikit.dll" Id="nunit.uikit.dll" Name="nunit.uikit.dll" Assembly=".net" AssemblyApplication="nunit.uikit.dll" AssemblyManifest="nunit.uikit.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="05C2C035-FD03-4E68-B4B4-A20906FEBA9E" Id="NUnitUtilDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit.util.dll" Id="nunit.util.dll" Name="nunit.util.dll" Assembly=".net" AssemblyApplication="nunit.util.dll" AssemblyManifest="nunit.util.dll" KeyPath="yes" /> |
|
</Component> |
|
<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="D27CF2E9-B836-4581-8FF3-23D1154FC9B8" Id="NunitConsoleRunnerDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit-console-runner.dll" Id="nunit_console_runner.dll" Name="nunit-console-runner.dll" Assembly=".net" AssemblyApplication="nunit_console_runner.dll" AssemblyManifest="nunit_console_runner.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="6485334C-163C-479E-9ACE-8E738D9BDB96" Id="NUnitCoreDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\nunit.core.dll" Id="nunit.core.dll" Name="nunit.core.dll" /> |
|
</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="D67E8EC9-2D98-4889-856F-78FD2BE35947" Id="NUnitCoreInterfacesDll" DiskId="1"> |
|
<File Id="nunit.core.interfaces.dll" KeyPath="yes" Name="nunit.core.interfaces.dll" Assembly=".net" AssemblyApplication="nunit.core.interfaces.dll" AssemblyManifest="nunit.core.interfaces.dll" Source="..\..\bin\Tools\NUnit\nunit.core.interfaces.dll" /> |
|
</Component> |
|
<Component Guid="1746BE13-1435-4547-B46C-9B0222736EE9" Id="NUnitLog4NetDll" DiskId="1"> |
|
<File Source="..\..\bin\Tools\NUnit\log4net.dll" Name="log4net.dll" Id="NUnit.log4net.dll" Assembly=".net" AssemblyApplication="NUnit.log4net.dll" AssemblyManifest="NUnit.log4net.dll" KeyPath="yes" /> |
|
</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="DA202409-86C7-4E13-9D12-26926A6F770B" Id="PartCoverBrowserManualRtf" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover Browser Manual.rtf" Id="PartCover_Browser_Manual.rtf" Name="PartCover Browser Manual.rtf" KeyPath="yes" /> |
|
</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\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}" Value="PartCoverConnector Object" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidAppId" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}" Name="AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidInProcServer" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}\InProcServer32" Value="[#PartCover.CorDriver.dll]" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidInProcServerThreadingModel" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}\InProcServer32" Name="ThreadingModel" Value="both" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidProgID" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}\ProgID" Value="PartCover.CorDriver.Connector.2" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidProgrammable" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}\Programmable" Value=" " /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidTypeLib" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}\TypeLib" Value="{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}" /> |
|
<RegistryValue Id="PartCoverCorDriverRegistryClsIdGuidVersionIndependentProgID" Root="HKCR" Type="string" Key="CLSID\{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}\VersionIndependentProgID" Value="PartCover.CorDriver.Connector" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuid" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}" Value="CorProfiler Object" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidAppId" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\AppId" Value="7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidInprocServer32" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\InprocServer32" Value="[#PartCover.CorDriver.dll]" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidInprocServer32ThreadingModel" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\InprocServer32" Name="ThreadingModel" Value="both" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidProgId" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\ProgId" Value="PartCover.CorDriver.CorProfiler.2" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidProgrammable" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\Programmable" Value=" " /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidTypeLib" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\TypeLib" Value="{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}" /> |
|
<RegistryValue Id="PartCoverCorProfilerRegistryClsIdGuidVersionIndependentProgID" Root="HKCR" Type="string" Key="CLSID\{717FF691-2ADF-4ac0-985F-1DD3C42FDF90}\VersionIndependentProgID" Value="PartCover.CorDriver.CorProfiler" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistry" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector" Value="PartCoverConnector Object" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistryClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector\CLSID" Value="{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistryCurVer" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector\CurVer" Value="PartCover.CorDriver.Connector.2" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistry2" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector.2" Value="PartCoverConnector Object" /> |
|
<RegistryValue Id="PartCoverCorConnectorRegistry2ClsId" Root="HKCR" Type="string" Key="PartCover.CorDriver.Connector.2\CLSID" Value="{6F6225EA-0897-41fa-B1EF-8B4D3E15325E}" /> |
|
<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.0" Value="PartCover module" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuidWin32" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.0\0\win32" Value="[#PartCover.CorDriver.dll]" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuidFlags" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.0\FLAGS" Value="0" /> |
|
<RegistryValue Id="PartCoverTypeLibRegistryGuidHelp" Root="HKCR" Type="string" Key="TypeLib\{7D0E6AAB-C5FC-4103-AAD4-8BF3112A56C4}\2.0\HELPDIR" Value=" " /> |
|
</Component> |
|
<Component Guid="BEF3D893-B7BA-4487-BDF4-5E8E31AF4C6B" Id="PartCoverCoverageBrowserExe" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover.Coverage.Browser.exe" Id="PartCover.Coverage.Browser.exe" Name="PartCover.Coverage.Browser.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="PartCover.Coverage.Browser.exe" AssemblyManifest="PartCover.Coverage.Browser.exe" /> |
|
</Component> |
|
<Component Guid="BE28BCAE-B6D2-430E-8591-95C095BDACD7" Id="PartCoverCoverageBrowserExeConfig" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\PartCover.Coverage.Browser.exe.config" Id="PartCover.Coverage.Browser.exe.config" Name="PartCover.Coverage.Browser.exe.config" KeyPath="yes" /> |
|
</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="00708219-F106-4A0E-8CDA-E41DE2C0D611" Id="AssemblyReportXslt" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\Xslt\assembly.report.xslt" Id="assembly.report.xslt" Name="assembly.report.xslt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="55D89B3C-F9F7-48CD-983A-27EBB09AEF72" Id="ClassReportXslt" DiskId="1"> |
|
<File Source="..\..\bin\Tools\PartCover\Xslt\class.report.xslt" Id="class.report.xslt" Name="class.report.xslt" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="SHFB" Name="SHFB"> |
|
<Component Guid="111F8CA7-80F2-4F13-8FBF-041B0D5A9134" Id="SHFBMain" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\BuildReflectionData.bat" Name="BuildReflectionData.bat" Id="BuildReflectionData.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\ColorizerLibrary.dll" Name="ColorizerLibrary.dll" Id="ColorizerLibrary.dll" /> |
|
<File Source="..\..\bin\Tools\SHFB\ColorizerLibrary.xml" Name="ColorizerLibrary.xml" Id="ColorizerLibrary.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\Help.ico" Name="Help.ico" Id="Help.ico" /> |
|
<File Source="..\..\bin\Tools\SHFB\License.txt" Name="License.txt" Id="License.txt" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilder.chm" Name="SandcastleBuilder.chm" Id="SandcastleBuilder.chm" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilder.Components.dll" Name="SandcastleBuilder.Components.dll" Id="SandcastleBuilder.Components.dll" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilder.Components.xml" Name="SandcastleBuilder.Components.xml" Id="SandcastleBuilder.Components.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilder.ico" Name="SandcastleBuilder.ico" Id="SandcastleBuilder.ico" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilder.Utils.dll" Name="SandcastleBuilder.Utils.dll" Id="SandcastleBuilder.Utils.dll" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilder.Utils.xml" Name="SandcastleBuilder.Utils.xml" Id="SandcastleBuilder.Utils.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilderConsole.exe" Name="SandcastleBuilderConsole.exe" Id="SandcastleBuilderConsole.exe" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilderConsole.xml" Name="SandcastleBuilderConsole.xml" Id="SandcastleBuilderConsole.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilderGUI.exe" Name="SandcastleBuilderGUI.exe" Id="SandcastleBuilderGUI.exe" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilderGUI.exe.config" Name="SandcastleBuilderGUI.exe.config" Id="SandcastleBuilderGUI.exe.config" /> |
|
<File Source="..\..\bin\Tools\SHFB\SandcastleBuilderGUI.xml" Name="SandcastleBuilderGUI.xml" Id="SandcastleBuilderGUI.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SHFB.url" Name="SHFB.url" Id="SHFB.url" /> |
|
</Component> |
|
<Directory Id="BuildComponents" Name="BuildComponents"> |
|
<Component Guid="A5AE6005-2642-45F3-AAA1-C2475AE9042F" Id="SHFBBuildComponents" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\BuildComponents\SandcastleBuilder.Components.config" Name="SandcastleBuilder.Components.config" Id="SandcastleBuilder.Components.config" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="Colorizer" Name="Colorizer"> |
|
<Component Guid="C31A0586-663B-4D99-8D93-1960975A72BB" Id="SHFBColorizer" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\Colorizer\CopyCode.gif" Name="CopyCode.gif" Id="CopyCode.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Colorizer\CopyCode_h.gif" Name="CopyCode_h.gif" Id="CopyCode_h.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Colorizer\highlight.css" Name="highlight.css" Id="highlight.css" /> |
|
<File Source="..\..\bin\Tools\SHFB\Colorizer\highlight.js" Name="highlight.js" Id="highlight.js" /> |
|
<File Source="..\..\bin\Tools\SHFB\Colorizer\highlight.xml" Name="highlight.xml" Id="highlight.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\Colorizer\highlight.xsl" Name="highlight.xsl" Id="highlight.xsl" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="PlugIns" Name="PlugIns"> |
|
<Component Guid="CB479EB2-CD07-4FA2-A3E1-52BACC46896F" Id="SHFBPlugins" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\PlugIns\SandcastleBuilder.PlugIns.dll" Name="SandcastleBuilder.PlugIns.dll" Id="SandcastleBuilder.PlugIns.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SharedContent" Name="SharedContent"> |
|
<Component Guid="EF1F9FB6-B411-47AB-A5D3-342AEB8AA03A" Id="SHFBSharedContent" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_de-DE.xml" Name="HanaBuilderContent_de-DE.xml" Id="HanaBuilderContent_de_DE.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_en-US.xml" Name="HanaBuilderContent_en-US.xml" Id="HanaBuilderContent_en_US.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_es-ES.xml" Name="HanaBuilderContent_es-ES.xml" Id="HanaBuilderContent_es_ES.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_fr-FR.xml" Name="HanaBuilderContent_fr-FR.xml" Id="HanaBuilderContent_fr_FR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_it-IT.xml" Name="HanaBuilderContent_it-IT.xml" Id="HanaBuilderContent_it_IT.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_ja-JP.xml" Name="HanaBuilderContent_ja-JP.xml" Id="HanaBuilderContent_ja_JP.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_ko-KR.xml" Name="HanaBuilderContent_ko-KR.xml" Id="HanaBuilderContent_ko_KR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_pt-BR.xml" Name="HanaBuilderContent_pt-BR.xml" Id="HanaBuilderContent_pt_BR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_ru-RU.xml" Name="HanaBuilderContent_ru-RU.xml" Id="HanaBuilderContent_ru_RU.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_zh-CHS.xml" Name="HanaBuilderContent_zh-CHS.xml" Id="HanaBuilderContent_zh_CHS.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\HanaBuilderContent_zh-CN.xml" Name="HanaBuilderContent_zh-CN.xml" Id="HanaBuilderContent_zh_CN.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_de-DE.xml" Name="PrototypeBuilderContent_de-DE.xml" Id="PrototypeBuilderContent_de_DE.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_en-US.xml" Name="PrototypeBuilderContent_en-US.xml" Id="PrototypeBuilderContent_en_US.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_es-ES.xml" Name="PrototypeBuilderContent_es-ES.xml" Id="PrototypeBuilderContent_es_ES.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_fr-FR.xml" Name="PrototypeBuilderContent_fr-FR.xml" Id="PrototypeBuilderContent_fr_FR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_it-IT.xml" Name="PrototypeBuilderContent_it-IT.xml" Id="PrototypeBuilderContent_it_IT.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_ja-JP.xml" Name="PrototypeBuilderContent_ja-JP.xml" Id="PrototypeBuilderContent_ja_JP.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_ko-KR.xml" Name="PrototypeBuilderContent_ko-KR.xml" Id="PrototypeBuilderContent_ko_KR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_pt-BR.xml" Name="PrototypeBuilderContent_pt-BR.xml" Id="PrototypeBuilderContent_pt_BR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_ru-RU.xml" Name="PrototypeBuilderContent_ru-RU.xml" Id="PrototypeBuilderContent_ru_RU.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_zh-CHS.xml" Name="PrototypeBuilderContent_zh-CHS.xml" Id="PrototypeBuilderContent_zh_CHS.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\PrototypeBuilderContent_zh-CN.xml" Name="PrototypeBuilderContent_zh-CN.xml" Id="PrototypeBuilderContent_zh_CN.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_de-DE.xml" Name="SharedBuilderContent_de-DE.xml" Id="SharedBuilderContent_de_DE.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_en-US.xml" Name="SharedBuilderContent_en-US.xml" Id="SharedBuilderContent_en_US.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_es-ES.xml" Name="SharedBuilderContent_es-ES.xml" Id="SharedBuilderContent_es_ES.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_fr-FR.xml" Name="SharedBuilderContent_fr-FR.xml" Id="SharedBuilderContent_fr_FR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_it-IT.xml" Name="SharedBuilderContent_it-IT.xml" Id="SharedBuilderContent_it_IT.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_ja-JP.xml" Name="SharedBuilderContent_ja-JP.xml" Id="SharedBuilderContent_ja_JP.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_ko-KR.xml" Name="SharedBuilderContent_ko-KR.xml" Id="SharedBuilderContent_ko_KR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_pt-BR.xml" Name="SharedBuilderContent_pt-BR.xml" Id="SharedBuilderContent_pt_BR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_ru-RU.xml" Name="SharedBuilderContent_ru-RU.xml" Id="SharedBuilderContent_ru_RU.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_zh-CHS.xml" Name="SharedBuilderContent_zh-CHS.xml" Id="SharedBuilderContent_zh_CHS.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\SharedBuilderContent_zh-CN.xml" Name="SharedBuilderContent_zh-CN.xml" Id="SharedBuilderContent_zh_CN.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_de-DE.xml" Name="VS2005BuilderContent_de-DE.xml" Id="VS2005BuilderContent_de_DE.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_en-US.xml" Name="VS2005BuilderContent_en-US.xml" Id="VS2005BuilderContent_en_US.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_es-ES.xml" Name="VS2005BuilderContent_es-ES.xml" Id="VS2005BuilderContent_es_ES.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_fr-FR.xml" Name="VS2005BuilderContent_fr-FR.xml" Id="VS2005BuilderContent_fr_FR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_it-IT.xml" Name="VS2005BuilderContent_it-IT.xml" Id="VS2005BuilderContent_it_IT.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_ja-JP.xml" Name="VS2005BuilderContent_ja-JP.xml" Id="VS2005BuilderContent_ja_JP.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_ko-KR.xml" Name="VS2005BuilderContent_ko-KR.xml" Id="VS2005BuilderContent_ko_KR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_pt-BR.xml" Name="VS2005BuilderContent_pt-BR.xml" Id="VS2005BuilderContent_pt_BR.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_ru-RU.xml" Name="VS2005BuilderContent_ru-RU.xml" Id="VS2005BuilderContent_ru_RU.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_zh-CHS.xml" Name="VS2005BuilderContent_zh-CHS.xml" Id="VS2005BuilderContent_zh_CHS.xml" /> |
|
<File Source="..\..\bin\Tools\SHFB\SharedContent\VS2005BuilderContent_zh-CN.xml" Name="VS2005BuilderContent_zh-CN.xml" Id="VS2005BuilderContent_zh_CN.xml" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="Templates" Name="Templates"> |
|
<Component Guid="26880C19-9670-4B24-99F7-D15FBD37F78D" Id="SHFBTemplates" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Build1xHelpFile.bat" Name="Build1xHelpFile.bat" Id="Build1xHelpFile.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Build2xHelpFile.bat" Name="Build2xHelpFile.bat" Id="Build2xHelpFile.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\BuildHelpTopics.bat" Name="BuildHelpTopics.bat" Id="BuildHelpTopics.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\FullTextExclusions.txt" Name="FullTextExclusions.txt" Id="FullTextExclusions.txt" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Generate1xIndex.bat" Name="Generate1xIndex.bat" Id="Generate1xIndex.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Generate1xTOC.bat" Name="Generate1xTOC.bat" Id="Generate1xTOC.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Generate2xTOC.bat" Name="Generate2xTOC.bat" Id="Generate2xTOC.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\GenerateIntermediateTOC.bat" Name="GenerateIntermediateTOC.bat" Id="GenerateIntermediateTOC.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\GenerateRefInfo.bat" Name="GenerateRefInfo.bat" Id="GenerateRefInfo.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\GenerateWebsiteTOC.bat" Name="GenerateWebsiteTOC.bat" Id="GenerateWebsiteTOC.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Hana.config" Name="Hana.config" Id="Hana.config" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Hana.xsl" Name="Hana.xsl" Id="Hana.xsl" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help1x.hhp" Name="Help1x.hhp" Id="Help1x.hhp" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x.hxc" Name="Help2x.hxc" Id="Help2x.hxc" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x.hxf" Name="Help2x.hxf" Id="Help2x.hxf" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_a.hxk" Name="Help2x_a.hxk" Id="Help2x_a.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_b.hxk" Name="Help2x_b.hxk" Id="Help2x_b.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_f.hxk" Name="Help2x_f.hxk" Id="Help2x_f.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_k.hxk" Name="Help2x_k.hxk" Id="Help2x_k.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_n.hxk" Name="Help2x_n.hxk" Id="Help2x_n.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_NamedURLIndex.hxk" Name="Help2x_NamedURLIndex.hxk" Id="Help2x_NamedURLIndex.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Help2x_s.hxk" Name="Help2x_s.hxk" Id="Help2x_s.hxk" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\MRefBuilder.config" Name="MRefBuilder.config" Id="MRefBuilder.config" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Prototype.config" Name="Prototype.config" Id="Prototype.config" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\Prototype.xsl" Name="Prototype.xsl" Id="Prototype.xsl" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\TocToWebContents.xsl" Name="TocToWebContents.xsl" Id="TocToWebContents.xsl" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\TransformManifest.bat" Name="TransformManifest.bat" Id="TransformManifest.bat" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\VS2005.config" Name="VS2005.config" Id="VS2005.config" /> |
|
<File Source="..\..\bin\Tools\SHFB\Templates\VS2005.xsl" Name="VS2005.xsl" Id="VS2005.xsl" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="Web" Name="Web"> |
|
<Component Guid="54FE6E49-5F1E-4792-95CB-959999412D42" Id="SHFBWeb" DiskId="1"> |
|
<File Source="..\..\bin\Tools\SHFB\Web\CloseSearch.png" Name="CloseSearch.png" Id="CloseSearch.png" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\CollapseAll.bmp" Name="CollapseAll.bmp" Id="CollapseAll.bmp" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Collapsed.gif" Name="Collapsed.gif" Id="Collapsed.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\ExpandAll.bmp" Name="ExpandAll.bmp" Id="ExpandAll.bmp" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Expanded.gif" Name="Expanded.gif" Id="Expanded.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\FillNode.aspx" Name="FillNode.aspx" Id="FillNode.aspx" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Index.aspx" Name="Index.aspx" Id="Index.aspx" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Index.html" Name="Index.html" Id="Index.html" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Item.gif" Name="Item.gif" Id="Item.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Search.gif" Name="Search.gif" Id="Search.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\SearchHelp.aspx" Name="SearchHelp.aspx" Id="SearchHelp.aspx" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Splitter.gif" Name="Splitter.gif" Id="Splitter.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\SyncTOC.gif" Name="SyncTOC.gif" Id="SyncTOC.gif" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\TOC.css" Name="TOC.css" Id="TOC.css" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\TOC.js" Name="TOC.js" Id="TOC.js" /> |
|
<File Source="..\..\bin\Tools\SHFB\Web\Web.Config" Name="Web.Config" Id="Web.Config" /> |
|
</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="28E09E1C-B1E4-4ABC-9EA8-D37255CDD9E3" Id="BuildWorkerFiles" DiskId="1"> |
|
<File Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker.exe" Id="ICSharpCode.SharpDevelop.BuildWorker.exe" Name="ICSharpCode.SharpDevelop.BuildWorker.exe" /> |
|
<File Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker.exe.config" Id="ICSharpCode.SharpDevelop.BuildWorker.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker.exe.config" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="DocFolder" Name="doc"> |
|
<Component Guid="370DE542-C4A9-48DA-ACF8-09949CDCD808" Id="SharpDevelopDocFiles" DiskId="1"> |
|
<File Source="..\..\doc\AssemblyBaseAddresses.txt" Id="AssemblyBaseAddresses.txt" Name="AssemblyBaseAddresses.txt" /> |
|
<File Source="..\..\doc\BuiltWithSharpDevelop.png" Id="BuiltWithSharpDevelop.png" Name="BuiltWithSharpDevelop.png" /> |
|
<File Source="..\..\doc\ChangeLog.xml" Id="ChangeLog.xml" Name="ChangeLog.xml" /> |
|
<File Source="..\..\doc\copyright.txt" Id="copyright.txt" Name="copyright.txt" /> |
|
<File Source="..\..\doc\license.txt" Name="license.txt" Id="license.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\CSharp_prjx2csproj.xsl" Id="CSharp_prjx2csproj.xsl" Name="CSharp_prjx2csproj.xsl" /> |
|
<File Source="..\..\data\ConversionStyleSheets\CSharp_prjx2csproj_user.xsl" Id="CSharp_prjx2csproj_user.xsl" Name="CSharp_prjx2csproj_user.xsl" /> |
|
<File Source="..\..\data\ConversionStyleSheets\ShowChangeLog.xsl" Id="ShowChangeLog.xsl" Name="ShowChangeLog.xsl" /> |
|
<File Source="..\..\data\ConversionStyleSheets\ShowXmlDocumentation.xsl" Id="ShowXmlDocumentation.xsl" Name="ShowXmlDocumentation.xsl" /> |
|
<File Source="..\..\data\ConversionStyleSheets\SVNChangelogToXml.xsl" Id="SVNChangelogToXml.xsl" Name="SVNChangelogToXml.xsl" /> |
|
<File Source="..\..\data\ConversionStyleSheets\vsnet2msbuild.xsl" Id="vsnet2msbuild.xsl" Name="vsnet2msbuild.xsl" /> |
|
<File Source="..\..\data\ConversionStyleSheets\vsnet2msbuild_user.xsl" Id="vsnet2msbuild_user.xsl" Name="vsnet2msbuild_user.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="ResourcesFolder" Name="resources"> |
|
<Directory Id="CssFolder" Name="css"> |
|
<Component Guid="458B2D53-EE43-4586-BDEB-E9AFF37F720B" Id="CssFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\css\MsdnHelp.css" Name="MsdnHelp.css" Id="MsdnHelp.css" /> |
|
<File Source="..\..\data\resources\css\SharpDevelopStandard.css" Id="SharpDevelopStandard.css" Name="SharpDevelopStandard.css" /> |
|
</Component> |
|
</Directory> |
|
<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\badgoisern.png" Id="badgoisern.png" Name="badgoisern.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> |
|
<Directory Id="LayoutsFolder" Name="layouts"> |
|
<Component Guid="B982324C-D787-425E-BB2C-4EF4C983867D" Id="LayoutFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\layouts\Plain.xml" Name="Plain.xml" Id="Plain.xml" /> |
|
<File Source="..\..\data\resources\layouts\Debug.xml" Name="Debug.xml" Id="Debug.xml" /> |
|
<File Source="..\..\data\resources\layouts\Default.xml" Name="Default.xml" Id="Default.xml" /> |
|
<File Source="..\..\data\resources\layouts\LayoutConfig.xml" Id="LayoutConfig.xml" Name="LayoutConfig.xml" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="StartPageFolder" Name="startpage"> |
|
<Directory Id="StartPageLayoutFolder" Name="Layout"> |
|
<Directory Id="LayoutBlueFolder" Name="blue"> |
|
<Component Guid="1DFAB472-3E8E-4E0B-908F-0FD1F520792F" Id="StartPageLayoutBlueFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\blue\balken_rechts.gif" Id="Blue_balken_rechts.gif" Name="balken_rechts.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\blue\balken_links.gif" Id="Blue_balken_links.gif" Name="balken_links.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\blue\balken_mitte.gif" Id="Blue_balken_mitte.gif" Name="balken_mitte.gif" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LayoutBrownFolder" Name="brown"> |
|
<Component Guid="3A3A5F7B-0A62-4A53-9DB7-209F4A863EF9" Id="StartPageLayoutBrownFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\brown\balken_rechts.gif" Id="Brown_balken_rechts.gif" Name="balken_rechts.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\brown\balken_links.gif" Id="Brown_balken_links.gif" Name="balken_links.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\brown\balken_mitte.gif" Id="Brown_balken_mitte.gif" Name="balken_mitte.gif" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LayoutCommonFolder" Name="common"> |
|
<Component Guid="B99D6762-087A-49DA-B1BB-F24E08CF4CC2" Id="StartPageLayoutCommonFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\common\pixel_weiss.gif" Id="pixel_weiss.gif" Name="pixel_weiss.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\common\blind.gif" Name="blind.gif" Id="blind.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\common\dot_listing.gif" Id="dot_listing.gif" Name="dot_listing.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\common\klinker_milestone.gif" Id="klinker_milestone.gif" Name="klinker_milestone.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\common\line_hor_black.gif" Id="line_hor_black.gif" Name="line_hor_black.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\common\milestone_col_head.gif" Id="milestone_col_head.gif" Name="milestone_col_head.gif" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LayoutGreenFolder" Name="green"> |
|
<Component Guid="81709CEC-4157-485B-854E-0ACF81D8E53D" Id="StartPageLayoutGreenFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\green\balken_rechts.gif" Id="Green_balken_rechts.gif" Name="balken_rechts.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\green\balken_links.gif" Id="Green_balken_links.gif" Name="balken_links.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\green\balken_mitte.gif" Id="Green_balken_mitte.gif" Name="balken_mitte.gif" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LayoutOrangeFolder" Name="orange"> |
|
<Component Guid="1AADCE06-721C-4F61-945F-42F9920685B6" Id="StartPageLayoutOrangeFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\orange\balken_rechts.gif" Id="Orange_balken_rechts.gif" Name="balken_rechts.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\orange\balken_links.gif" Id="Orange_balken_links.gif" Name="balken_links.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\orange\balken_mitte.gif" Id="Orange_balken_mitte.gif" Name="balken_mitte.gif" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="LayoutRedFolder" Name="red"> |
|
<Component Guid="FDDB0436-8AAF-4B76-B2A3-4973567A1D57" Id="StartPageLayoutRedFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\red\balken_rechts.gif" Id="Red_balken_rechts.gif" Name="balken_rechts.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\red\balken_links.gif" Id="Red_balken_links.gif" Name="balken_links.gif" /> |
|
<File Source="..\..\data\resources\startpage\Layout\red\balken_mitte.gif" Id="Red_balken_mitte.gif" Name="balken_mitte.gif" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="4A3761D8-42D7-4A18-9F7E-4BE31523710B" Id="StartPageLayoutFiles" DiskId="1"> |
|
<File Source="..\..\data\resources\startpage\Layout\default.css" Name="default.css" Id="default.css" /> |
|
</Component> |
|
</Directory> |
|
</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> |
|
</Directory> |
|
<Directory Id="TemplatesFolder" Name="templates"> |
|
<Directory Id="FileTemplatesFolder" Name="file"> |
|
<Directory Id="CSharpFileTemplatesFolder" Name="CSharp"> |
|
<Component Guid="3B4FEE71-8C15-4430-B5ED-FD010280C35C" 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.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.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="4431463D-4FA8-48A5-9D92-D1FDA818B324" Id="SharpDevelopReportTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\file\Misc\EmptyReport.xft" Id="EmptyReport.xft" Name="EmptyReport.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="VBNetFileTemplates" DiskId="1" Guid="EAD6810A-9009-43C8-9970-ABB18D0C8DFB"> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.UnitTest.xft" Id="VBNet.UnitTest.xft" Name="VBNet.UnitTest.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\FileCategorySortOrder.xml" Id="VBNetFileCategorySortOrder.xml" Name="FileCategorySortOrder.xml" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.Empty.xft" Id="VBNet.Empty.xft" Name="VBNet.Empty.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.EmptyClass.xft" Id="VBNet.EmptyClass.xft" Name="VBNet.EmptyClass.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.Forms.Form.xft" Id="VBNet.Forms.Form.xft" Name="VBNet.Forms.Form.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.Forms.UserControl.xft" Id="VBNet.Forms.UserControl.xft" Name="VBNet.Forms.UserControl.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.Interface.xft" Id="VBNet.Interface.xft" Name="VBNet.Interface.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.Module.xft" Id="VBNet.Module.xft" Name="VBNet.Module.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.MyExtensionClass.xft" Id="VBNet.MyExtensionClass.xft" Name="VBNet.MyExtensionClass.xft" /> |
|
<File Source="..\..\data\templates\file\VBNet\VBNet.Patterns.Singleton.xft" Id="VBNet.Patterns.Singleton.xft" Name="VBNet.Patterns.Singleton.xft" /> |
|
</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\CompactFormsProject.xpt" Id="CSharpCompactFormsProject.xpt" Name="CompactFormsProject.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" /> |
|
</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> |
|
<Component Guid="5B2ED689-37E3-4C9C-A21B-A5315943792E" Id="VBNetProjectCompactFormsProjectTemplate" DiskId="1"> |
|
<File Source="..\..\data\templates\project\VBNet\CompactFormsProject.xpt" Id="CompactFormsProject.xpt" Name="CompactFormsProject.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="RootAddInsFolder" 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="AddInsFolder" Name="AddIns"> |
|
<Directory Id="BackendBindingsFolder" Name="BackendBindings"> |
|
<Directory Id="BooBindingFolder" Name="BooBinding"> |
|
<Directory Id="BooTemplatesFolder" Name="Templates"> |
|
<Component Guid="3895056C-83A1-4EFA-9F57-1F9665D48246" Id="BooTemplateFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\Library.xpt" Name="Library.xpt" Id="Library.xpt" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\ConsoleProject.xpt" Id="BooConsoleProject.xpt" Name="ConsoleProject.xpt" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\DefaultAssemblyInfo.boo" Id="DefaultAssemblyInfo.boo" Name="DefaultAssemblyInfo.boo" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\Empty.xft" Name="Empty.xft" Id="Empty.xft" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\EmptyClass.xft" Id="EmptyClass.xft" Name="EmptyClass.xft" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\Form.xft" Name="Form.xft" Id="Form.xft" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\FormsProject.xpt" Id="FormsProject.xpt" Name="FormsProject.xpt" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="2E711769-201C-4C5F-A97A-179C852B023F" Id="BooBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.CodeDom.dll" Id="Boo.Lang.CodeDom.dll" Name="Boo.Lang.CodeDom.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Compiler.dll" Id="Boo.Lang.Compiler.dll" Name="Boo.Lang.Compiler.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.dll" Id="Boo.Lang.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Parser.dll" Id="Boo.Lang.Parser.dll" Name="Boo.Lang.Parser.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Useful.dll" Id="Boo.Lang.Useful.dll" Name="Boo.Lang.Useful.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.targets" Id="Boo.Microsoft.Build.targets" Name="Boo.Microsoft.Build.targets" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.Tasks.dll" Id="Boo.Microsoft.Build.Tasks.dll" Name="Boo.Microsoft.Build.Tasks.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\BooBinding.addin" Id="BooBinding.addin" Name="BooBinding.addin" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\BooBinding.dll" Id="BooBinding.dll" Name="BooBinding.dll" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\booc.exe" Name="booc.exe" Id="booc.exe" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\booc.exe.config" Id="booc.exe.config" Name="booc.exe.config" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\booc.rsp" Name="booc.rsp" Id="booc.rsp" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\NRefactoryToBooConverter.dll" Id="NRefactoryToBooConverter.dll" Name="NRefactoryToBooConverter.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="CSharpBindingFolder" Name="CSharpBinding"> |
|
<Component Guid="1E6F20EC-6BF4-45C0-AE99-319FBF568BD1" Id="CSharpBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\CSharpBinding\CSharpBinding.dll" Id="CSharpBinding.dll" Name="CSharpBinding.dll" Assembly=".net" AssemblyApplication="CSharpBinding.dll" AssemblyManifest="CSharpBinding.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\CSharpBinding\CSharpBinding.addin" Id="CSharpBinding.addin" Name="CSharpBinding.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ILAsmBindingFolder" Name="ILAsmBinding"> |
|
<Directory Id="ILAsmTemplatesFolder" Name="Templates"> |
|
<Component Guid="D20792CD-4884-4797-A177-C47CCFAB7197" Id="ILAsmTemplates" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\ILAsmBinding\Templates\ConsoleProject.xpt" Id="ILAsmConsoleProject.xpt" Name="ConsoleProject.xpt" /> |
|
</Component> |
|
</Directory> |
|
<Component Guid="494441F4-63E9-4A3E-82D6-026A966BCD11" Id="ILAsmBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\ILAsmBinding\ILAsmBinding.dll" Id="ILAsmBinding.dll" Name="ILAsmBinding.dll" Assembly=".net" AssemblyApplication="ILAsmBinding.dll" AssemblyManifest="ILAsmBinding.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\ILAsmBinding\ILAsmBinding.addin" Id="ILAsmBinding.addin" Name="ILAsmBinding.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="VBNetBindingFolder" Name="VBNetBinding"> |
|
<Component Guid="0F51B5A5-517F-40B3-932A-A0A693926E67" Id="VBNetBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\VBNetBinding\VBNetBinding.dll" Id="VBNetBinding.dll" Name="VBNetBinding.dll" Assembly=".net" AssemblyApplication="VBNetBinding.dll" AssemblyManifest="VBNetBinding.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\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\AddIns\BackendBindings\WixBinding\WixBinding.dll" Id="WixBinding.dll" Name="WixBinding.dll" Assembly=".net" AssemblyApplication="WixBinding.dll" AssemblyManifest="WixBinding.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\SetupDialogControlLibrary.sdcl" Id="SetupDialogControlLibrary.sdcl" Name="SetupDialogControlLibrary.sdcl" /> |
|
<File Source="..\..\AddIns\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\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\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\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\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\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\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\AddIns\BackendBindings\WixBinding\Templates\EmptyWixProject.xpt" Name="EmptyWixProject.xpt" Id="EmptyWixProject.xpt" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="7C9F2116-6FB8-4C19-B380-53B924E36CA6" Id="EmptyWixDialogTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\Templates\WixDialog.xft" Name="WixDialog.xft" Id="WixDialog.xft" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="FD65A496-FF17-4C07-996E-ECB20116984D" Id="WixDialogTemplate" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\Templates\WixGraphicalDialog.xft" Name="WixGraphicalDialog.xft" Id="WixGraphicalDialog.xft" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="XamlBinding" Name="XamlBinding"> |
|
<Component Guid="7A569E59-A93E-43A5-B154-ACEBC868C9F2" Id="XamlBindingFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\XamlBinding\XamlBinding.addin" Id="XamlBinding.addin" Name="XamlBinding.addin" /> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\XamlBinding\XamlBinding.dll" Id="XamlBinding.dll" Name="XamlBinding.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="PythonBinding" Name="PythonBinding"> |
|
<Component Guid="AF97A77A-F986-4284-BC0A-9568B1419FC1" Id="IpyExe" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\PythonBinding\ipy.exe" Name="ipy.exe" Id="ipy.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ipy.exe" AssemblyManifest="ipy.exe" /> |
|
</Component> |
|
<Component Guid="F3D35EE6-D6F3-4D3A-9613-70E01C780057" Id="IronMathDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\PythonBinding\IronMath.dll" Name="IronMath.dll" Id="IronMath.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronMath.dll" AssemblyManifest="IronMath.dll" /> |
|
</Component> |
|
<Component Guid="A7C0416F-8B3F-4C64-A25C-8B48AADD957D" Id="IronPythonDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\BackendBindings\PythonBinding\IronPython.dll" Id="IronPython.dll" Name="IronPython.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.dll" AssemblyManifest="IronPython.dll" /> |
|
</Component> |
|
<Component Guid="ADBB3544-DE83-4676-A95E-3BC497ABC94D" Id="PythonBuildTasksDll" DiskId="1"> |
|
<File Source="..\..\AddIns\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\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\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\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\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\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\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\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\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\AddIns\BackendBindings\PythonBinding\Templates\FormsProject.xpt" Id="Templates.FormsProject.xpt" Name="FormsProject.xpt" KeyPath="yes" /> |
|
</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\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.dll" Id="FormsDesigner.dll" Name="FormsDesigner.dll" Assembly=".net" AssemblyApplication="FormsDesigner.dll" AssemblyManifest="FormsDesigner.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\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\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\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\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\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.dll" Id="ResourceEditor.dll" Name="ResourceEditor.dll" Assembly=".net" AssemblyApplication="ResourceEditor.dll" AssemblyManifest="ResourceEditor.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.addin" Id="ResourceEditor.addin" Name="ResourceEditor.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SettingsEditorFolder" Name="SettingsEditor"> |
|
<Component Guid="76B108DB-2F39-42C8-9EAC-8F8C0C27D6C7" Id="SettingsEditorFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\SettingsEditor\SettingsEditor.dll" Id="SettingsEditor.dll" Name="SettingsEditor.dll" Assembly=".net" AssemblyApplication="SettingsEditor.dll" AssemblyManifest="SettingsEditor.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\SettingsEditor\SettingsEditor.addin" Id="SettingsEditor.addin" Name="SettingsEditor.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="XmlEditorFolder" Name="XmlEditor"> |
|
<Component Guid="BD0B4E5B-CBED-49A0-850C-3EA8DFCF3B17" Id="XmlEditorFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\XmlEditor\XmlEditor.dll" Id="XmlEditor.dll" Name="XmlEditor.dll" Assembly=".net" AssemblyApplication="XmlEditor.dll" AssemblyManifest="XmlEditor.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\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\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\AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin.addin" Id="ClassDiagram.ClassDiagramAddin.addin" Name="ClassDiagramAddin.addin" /> |
|
<File Source="..\..\AddIns\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\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="C315C474-B72D-4B12-8BB9-545E3A34DA59" Id="ClassEditorDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\ClassDiagram\ClassEditor.dll" Id="ClassDiagram.ClassEditor.dll" Name="ClassEditor.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ClassDiagram.ClassEditor.dll" AssemblyManifest="ClassDiagram.ClassEditor.dll" /> |
|
</Component> |
|
<Component Guid="EF2B150B-B0C4-4884-800C-BE904E520CF4" Id="DiagramsDll" DiskId="1"> |
|
<File Source="..\..\AddIns\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="WorkflowDesignerFolder" Name="WorkflowDesigner"> |
|
<Component Guid="0A5A0835-4280-4E64-9BBE-A87E7BCF640B" Id="WorkflowDesignerAddin" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\WorkflowDesigner.addin" Id="WorkflowDesigner.addin" Name="WorkflowDesigner.addin" /> |
|
</Component> |
|
<Component Guid="69BD4F05-0ADD-48C9-AD46-72D9B0C4A569" Id="WorkflowDesignerDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\WorkflowDesigner.dll" Id="WorkflowDesigner.dll" Name="WorkflowDesigner.dll" /> |
|
</Component> |
|
<Directory Id="WorkflowDesignerTemplatesFolder" Name="Templates"> |
|
<Directory Id="WorkflowDesignerFilesFolder" Name="Files"> |
|
<Component Guid="DA3146B7-E769-4240-9C6E-74956A395782" Id="NoCodeSequentialWorkflowXft" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Files\NoCodeSequentialWorkflow.xft" Id="NoCodeSequentialWorkflow.xft" Name="NoCodeSequentialWorkflow.xft" /> |
|
</Component> |
|
<Directory Id="WorkflowDesignerCSharpFilesFolder" Name="CSharp"> |
|
<Component Guid="D1C07A4B-45D7-440D-A0AC-AD1ED73CDD6F" Id="WorkflowDesignerCSharpFilesTemplates" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Files\CSharp\Activity.xft" Name="Activity.xft" Id="Activity.xft" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Files\CSharp\CodeSeparationSequentialWorkflow.xft" Id="CodeSeparationSequentialWorkflow.xft" Name="CodeSeparationSequentialWorkflow.xft" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Files\CSharp\CodeSequentialWorkflow.xft" Id="CodeSequentialWorkflow.xft" Name="CodeSequentialWorkflow.xft" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="WorkflowDesignerProjectsFolder" Name="Projects"> |
|
<Directory Id="WorkflowDesignerCSharpProjectsFolder" Name="CSharp"> |
|
<Component Guid="1114229A-8154-4A4B-A347-AA226D56C8F5" Id="WorkflowDesignerCSharpProjectTemplates" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Projects\CSharp\ActivityLibrary.xpt" Id="ActivityLibrary.xpt" Name="ActivityLibrary.xpt" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Projects\CSharp\ConsoleProject.xpt" Id="ConsoleProject.xpt" Name="ConsoleProject.xpt" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WorkflowDesigner\Templates\Projects\CSharp\EmptyProject.xpt" Id="EmptyProject.xpt" Name="EmptyProject.xpt" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Directory Id="WpfDesign" Name="WpfDesign"> |
|
<Component Guid="334A5E49-DF28-4733-9AD8-8381974B099D" Id="WpfDesignFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\WpfDesign.addin" Id="WpfDesign.addin" Name="WpfDesign.addin" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.AddIn.dll" Id="ICSharpCode.WpfDesign.AddIn.dll" Name="ICSharpCode.WpfDesign.AddIn.dll" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.Designer.dll" Id="ICSharpCode.WpfDesign.Designer.dll" Name="ICSharpCode.WpfDesign.Designer.dll" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.Designer.xml" Id="ICSharpCode.WpfDesign.Designer.xml" Name="ICSharpCode.WpfDesign.Designer.xml" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.dll" Id="ICSharpCode.WpfDesign.dll" Name="ICSharpCode.WpfDesign.dll" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.XamlDom.dll" Id="ICSharpCode.WpfDesign.XamlDom.dll" Name="ICSharpCode.WpfDesign.XamlDom.dll" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.XamlDom.xml" Id="ICSharpCode.WpfDesign.XamlDom.xml" Name="ICSharpCode.WpfDesign.XamlDom.xml" /> |
|
<File Source="..\..\AddIns\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.xml" Id="ICSharpCode.WpfDesign.xml" Name="ICSharpCode.WpfDesign.xml" /> |
|
</Component> |
|
</Directory> |
|
</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\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\AddIns\Misc\AddInManager\AddInManager.addin" Id="AddInManager.addin" Name="AddInManager.addin" /> |
|
<File Source="..\..\AddIns\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\AddIns\Misc\AddinScout\AddinScout.dll" Id="AddinScout.dll" Name="AddinScout.dll" Assembly=".net" AssemblyApplication="AddinScout.dll" AssemblyManifest="AddinScout.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\AddinScout\AddInScout.addin" Id="AddInScout.addin" Name="AddInScout.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="CodeAnalysisFolder" Name="CodeAnalysis"> |
|
<Component Guid="6CF33D51-953D-4E5F-840C-7FDCFD757520" Id="CodeAnalysisFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\CodeAnalysis\CodeAnalysis.dll" Id="CodeAnalysis.dll" Name="CodeAnalysis.dll" Assembly=".net" AssemblyApplication="CodeAnalysis.dll" AssemblyManifest="CodeAnalysis.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\CodeAnalysis\CodeAnalysis.addin" Id="CodeAnalysis.addin" Name="CodeAnalysis.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="ComponentInspectorAddInFolder" Name="ComponentInspector"> |
|
<Component Guid="2056340F-5471-422D-8901-9DC385D145AA" Id="ComponentInspectorAddInCoreDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\ComponentInspector\ComponentInspector.Core.dll" Id="ComponentInspector.Core.dll" Name="ComponentInspector.Core.dll" Assembly=".net" AssemblyApplication="ComponentInspector.Core.dll" AssemblyManifest="ComponentInspector.Core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C3CBE9CD-ED60-4B07-9082-D5D31755C388" Id="ComponentInspectorAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\ComponentInspector\ComponentInspector.addin" Id="ComponentInspector.addin" Name="ComponentInspector.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\ComponentInspector\ComponentInspector.AddIn.dll" Id="ComponentInspector.AddIn.dll" Name="ComponentInspector.AddIn.dll" Assembly=".net" AssemblyApplication="ComponentInspector.AddIn.dll" AssemblyManifest="ComponentInspector.AddIn.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="DebuggerFolder" Name="Debugger"> |
|
<Component Guid="3A14B928-3319-429B-8F39-8870431C49CB" Id="DebuggerAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.AddIn.addin" Id="Debugger.AddIn.addin" Name="Debugger.AddIn.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.AddIn.dll" Id="Debugger.AddIn.dll" Name="Debugger.AddIn.dll" /> |
|
<!-- |
|
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.BooInterpreter.addin" Id="Debugger.BooInterpreter.addin" Name="Debugger.BooInterpreter.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.BooInterpreter.dll" Id="Debugger.BooInterpreter.dll" Name="Debugger.BooInterpreter.dll" /> |
|
--> |
|
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.Core.dll" Id="Debugger.Core.dll" Name="Debugger.Core.dll" /> |
|
</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\AddIns\Misc\FiletypeRegisterer\filetypes\xml.ico" Name="xml.ico" Id="xml.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\addin.ico" Name="addin.ico" Id="addin.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\cmbx.ico" Name="cmbx.ico" Id="cmbx.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\cs.ico" Name="cs.ico" Id="cs.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\java.ico" Name="java.ico" Id="java.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\prjx.ico" Name="prjx.ico" Id="prjx.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\resx.ico" Name="resx.ico" Id="resx.ico" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\vb.ico" Name="vb.ico" Id="vb.ico" /> |
|
<File Source="..\..\AddIns\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\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\AddIns\Misc\FiletypeRegisterer\FiletypeRegisterer.addin" Id="FiletypeRegisterer.addin" Name="FiletypeRegisterer.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="HighlightingEditorFolder" Name="HighlightingEditor"> |
|
<Component Guid="6F792AF7-4622-40DF-8CE3-270D66A7A7EC" Id="HighlightingEditorFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\HighlightingEditor\HighlightingEditor.addin" Id="HighlightingEditor.addin" Name="HighlightingEditor.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HighlightingEditor\HighlightingEditor.dll" Id="HighlightingEditor.dll" Name="HighlightingEditor.dll" Assembly=".net" AssemblyApplication="HighlightingEditor.dll" AssemblyManifest="HighlightingEditor.dll" KeyPath="yes" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="HtmlHelpFolder" Name="HtmlHelp2"> |
|
<Component Guid="C854C30E-1765-4614-8248-F256C761CEE3" Id="HtmlHelp2Files" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\stdole.dll" Name="stdole.dll" Id="stdole.dll" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2.addin" Id="HtmlHelp2.addin" Name="HtmlHelp2.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2.dll" Id="HtmlHelp2.dll" Name="HtmlHelp2.dll" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2.DynamicHelp.addin" Id="HtmlHelp2.DynamicHelp.addin" Name="HtmlHelp2.DynamicHelp.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2JScriptGlobals.dll" Id="HtmlHelp2JScriptGlobals.dll" Name="HtmlHelp2JScriptGlobals.dll" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\MSHelpControls.dll" Id="MSHelpControls.dll" Name="MSHelpControls.dll" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\MSHelpServices.dll" Id="MSHelpServices.dll" Name="MSHelpServices.dll" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="PInvokeAddInFolder" Name="PInvokeAddIn"> |
|
<Component Guid="09DC988A-373E-4147-BA35-AF6BF0047B1A" Id="PInvokeAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\PInvokeAddIn\signatures.xml" Id="signatures.xml" Name="signatures.xml" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\PInvokeAddIn\PInvoke.addin" Id="PInvoke.addin" Name="PInvoke.addin" /> |
|
<File Source="..\..\AddIns\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\AddIns\Misc\RegExpTk\RegExpTk.addin" Id="RegExpTk.addin" Name="RegExpTk.addin" /> |
|
<File Source="..\..\AddIns\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\AddIns\Misc\ResourceToolkit\Hornung.ResourceToolkit.addin" Id="Hornung.ResourceToolkit.addin" Name="Hornung.ResourceToolkit.addin" /> |
|
<File Source="..\..\AddIns\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\AddIns\Misc\StartPage\StartPage.dll" Id="StartPage.dll" Name="StartPage.dll" Assembly=".net" AssemblyApplication="StartPage.dll" AssemblyManifest="StartPage.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\StartPage\StartPage.addin" Id="StartPage.addin" Name="StartPage.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="SubversionAddInFolder" Name="SubversionAddIn"> |
|
<Component Id="SubversionUtilsDll" Guid="0FEF5BBC-A97C-4BB9-BEC2-759388E5572D" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\Utils.dll" Id="Utils.dll" Assembly=".net" AssemblyApplication="NSvn.Common.dll" AssemblyManifest="NSvn.Common.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="SubversionLibAprDll" Guid="E4EE12A6-0766-4C85-8E28-7D7DEFC3AFEE" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LIBAPR.DLL" Id="LIBAPR.DLL" /> |
|
</Component> |
|
<Component Id="SubversionAprIconvDll" Guid="1494C120-502D-4108-897F-14BD0D601DD1" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LibAprIconv.Dll" Id="LibAprIconv.Dll" Name="LibAprIconv.Dll" /> |
|
</Component> |
|
<Component Id="SubversionLibAprUtilDll" Guid="7F963E06-7BF6-4D95-B6C7-443A5A8FC739" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LibAprUtil.Dll" Id="LibAprUtil.Dll" Name="LibAprUtil.Dll" /> |
|
</Component> |
|
<Component Id="SubversionLibDb44Dll" Guid="6A86A5F7-1E80-465D-82F4-B8064663F83A" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LibDB44.dll" Name="LibDB44.dll" Id="LibDB44.dll" /> |
|
</Component> |
|
<Component Id="SubversionMsvcp70Dll" Guid="E4612BC7-DA35-403D-BCFE-BC04D797D801" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\msvcp70.dll" Name="msvcp70.dll" Id="msvcp70.dll" /> |
|
</Component> |
|
<Component Id="SubversionMsvcr70Dll" Guid="993F3D8A-DB4E-433E-92E4-FB46AF71488D" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\msvcr70.dll" Name="msvcr70.dll" Id="msvcr70.dll" /> |
|
</Component> |
|
<Component Id="NSvnCommonDll" Guid="53B4D3C6-5A80-496E-8926-3A7060766068" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\NSvn.Common.dll" Id="NSvn.Common.dll" Name="NSvn.Common.dll" Assembly=".net" AssemblyApplication="NSvn.Common.dll" AssemblyManifest="NSvn.Common.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Id="NSvnCoreDll" Guid="5989C307-D92E-4973-89E0-2509E3306C09" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\NSvn.Core.dll" Id="NSvn.Core.dll" Name="NSvn.Core.dll" Assembly=".net" AssemblyApplication="NSvn.Core.dll" AssemblyManifest="NSvn.Core.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C9B1D523-5674-4398-9073-20F57B45DD46" Id="SubversionAddInDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\SubversionAddIn.dll" Id="SubversionAddIn.dll" Name="SubversionAddIn.dll" Assembly=".net" AssemblyApplication="SubversionAddIn.dll" AssemblyManifest="SubversionAddIn.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\ICSharpCode.Svn.addin" Id="ICSharpCode.Svn.addin" Name="ICSharpCode.Svn.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="UnitTestingFolder" Name="UnitTesting"> |
|
<Component Guid="F2F7F12D-1920-49BC-86B0-65B5A1B76516" Id="UnitTestingAddInFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\UnitTesting\UnitTesting.dll" Id="UnitTesting.dll" Name="UnitTesting.dll" Assembly=".net" AssemblyApplication="UnitTesting.dll" AssemblyManifest="UnitTesting.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\UnitTesting\UnitTesting.addin" Id="UnitTesting.addin" Name="UnitTesting.addin" /> |
|
</Component> |
|
</Directory> |
|
<Directory Id="CodeCoverageFolder" Name="CodeCoverage"> |
|
<Component Guid="86A8B8D1-9FFD-46A4-84F8-2BD530E1F83E" Id="CodeCoverageFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\CodeCoverage\CodeCoverage.dll" Id="CodeCoverage.dll" Name="CodeCoverage.dll" Assembly=".net" AssemblyApplication="CodeCoverage.dll" AssemblyManifest="CodeCoverage.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\CodeCoverage\CodeCoverage.addin" Id="CodeCoverage.addin" Name="CodeCoverage.addin" /> |
|
</Component> |
|
</Directory> |
|
<!-- Disabled SharpServerTools temporarily |
|
<Directory Id="SharpServerTools" Name="SharpServerTools"> |
|
<Component Guid="222C0F80-D2BC-4C35-B829-64E33CED573D" Id="DataToolsModelDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SharpServerTools\ICSharpCode.DataTools.Model.dll" Id="ICSharpCode.DataTools.Model.dll" Name="ICSharpCode.DataTools.Model.dll" Assembly=".net" AssemblyApplication="ICSharpCode.DataTools.Model.dll" AssemblyManifest="ICSharpCode.DataTools.Model.dll" KeyPath="yes" /> |
|
</Component> |
|
<Component Guid="C4CE7F6D-0ABF-418B-B5BF-486FB6FEBABC" Id="ServerBrowserToolDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SharpServerTools\ICSharpCode.ServerBrowserTool.dll" Id="ICSharpCode.ServerBrowserTool.dll" Name="ICSharpCode.ServerBrowserTool.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.ServerBrowserTool.dll" AssemblyManifest="ICSharpCode.ServerBrowserTool.dll" /> |
|
</Component> |
|
<Component Guid="DE8B6825-3F51-4E8D-80CA-459E3BE6A9B9" Id="DataToolsAddinDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SharpServerTools\ICSharpCode.DataTools.AddIn.dll" Id="ICSharpCode.DataTools.AddIn.dll" Name="ICSharpCode.DataTools.AddIn.dll" Assembly=".net" AssemblyApplication="ICSharpCode.DataTools.AddIn.dll" AssemblyManifest="ICSharpCode.DataTools.AddIn.dll" KeyPath="yes" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\SharpServerTools\SharpServerTools.addin" Id="SharpServerTools.addin" Name="SharpServerTools.addin" /> |
|
</Component> |
|
<Component Guid="770BE2AE-2B65-4EEF-A36B-316D8A4BD47E" Id="DataToolsUIDll" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SharpServerTools\ICSharpCode.DataTools.UI.dll" Id="ICSharpCode.DataTools.UI.dll" Name="ICSharpCode.DataTools.UI.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.DataTools.UI.dll" AssemblyManifest="ICSharpCode.DataTools.UI.dll" /> |
|
</Component> |
|
</Directory> |
|
--> |
|
<Directory Id="SearchAndReplace" Name="SearchAndReplace"> |
|
<Component Guid="A76D4EB6-0EBB-49D7-9528-2FA87C983703" Id="SearchAndReplaceFiles" DiskId="1"> |
|
<File Source="..\..\AddIns\AddIns\Misc\SearchAndReplace\SearchAndReplace.addin" Id="SearchAndReplace.addin" Name="SearchAndReplace.addin" /> |
|
<File Source="..\..\AddIns\AddIns\Misc\SearchAndReplace\SearchAndReplace.dll" Id="SearchAndReplace.dll" Name="SearchAndReplace.dll" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
</Directory> |
|
<Component Guid="5212F79E-568F-426D-AFD2-FC93914D5CE9" 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"> |
|
<Directory Id="SharpDevelopProgramMenuFolder" Name="SharpDevelop 3.0"> |
|
<Component Id="SharpDevelopProgramMenuItems" Guid="AB3D8418-BD70-4EB8-8659-8ED3CEC83FEC"> |
|
<!-- |
|
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\SharpDevelop3" Name="ProgramFilesShortcut" Value="1" /> |
|
<Shortcut Name="SharpDevelop" Target="[!SharpDevelop.exe]" Id="SharpDevelopExeStartMenuShortcut" WorkingDirectory="BinFolder" Icon="SharpDevelopIcon.exe" Directory="SharpDevelopProgramMenuFolder" /> |
|
<Shortcut Name="Website" Target="[!SharpDevelop.url]" Id="SharpDevelopUrlStartMenuShortcut" WorkingDirectory="BinFolder" Directory="SharpDevelopProgramMenuFolder" /> |
|
<!-- |
|
Fix ICE64 by adding a remove folder element |
|
http://windowssdk.msdn.microsoft.com/en-us/library/ms704358.aspx |
|
--> |
|
<RemoveFolder Id="RemoveSharpDevelopProgramMenuFolder" On="uninstall" /> |
|
</Component> |
|
</Directory> |
|
</Directory> |
|
<!-- Desktop shortcuts --> |
|
<Directory Id="DesktopFolder" Name="Desktop"> |
|
<Component Id="DesktopFolderItems" Guid="0B7F764F-19C0-401A-889E-3A9E482CA234"> |
|
<!-- |
|
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\SharpDevelop3" Name="DesktopShortcut" Value="1" /> |
|
<Shortcut Id="SharpDevelopExeDesktopShortcut" Directory="DesktopFolder" Target="[!SharpDevelop.exe]" Name="SharpDevelop 3.0" Icon="SharpDevelopIcon.exe" WorkingDirectory="BinFolder" /> |
|
</Component> |
|
</Directory> |
|
</DirectoryRef> |
|
</Fragment> |
|
</Wix> |