diff --git a/src/Setup/Files.wxs b/src/Setup/Files.wxs deleted file mode 100644 index 2b35a19445..0000000000 --- a/src/Setup/Files.wxs +++ /dev/null @@ -1,1673 +0,0 @@ -<!-- 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="$(var.PRODUCTMAJORVERSION)"> - <Directory Id="BinFolder" Name="bin"> - <Component Id="SharpDevelopExe" Guid="F632C62C-A4DD-4507-9678-C7DCFF4DBC8C" DiskId="1"> - <File Id="SharpDevelop.exe" Name="SharpDevelop.exe" Source="..\..\bin\SharpDevelop.exe" Assembly=".net" AssemblyApplication="SharpDevelop.exe" AssemblyManifest="SharpDevelop.exe" KeyPath="yes"> - <!-- - NGens SharpDevelop.exe. Needs the NetFx extension (WixNetFxExtension.dll), - library (netfx.wixlib) and custom actions (netfxca.dll). - - Priority=0 means the image generation occurs during - setup. Other values defer the generation. - - Default Platform value is 32bit which tries to generate images - for 32 bitversions of the .NET framework on the - target machine. This will fail on a machine with - 64 bit version of .NET. Cannot use Platform=all - since this runs NGen for both 32 and 64 bit versions - regardless of whether they exist on the target - machine. - --> - <!-- Using priority 1 because 0 slows down setup and might have a bug that causes it to work like priority 3 (http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg34312.html). --> - <netfx:NativeImage Id="SharpDevelopNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - </Component> - <Component Id="BooProjectFileAssociation" Guid="8FD60FEE-9220-4409-B98E-273AAC4A03E0" DiskId="1"> - <!-- - Get several ICE33 warnings using the ProgId element - but these apparently can safely be ignored - according to a post on the wix-users list by - Rob Mencshing. Also using the ProgId element - does not create the ProgId table. The current installer - no longer uses the ProgId but instead uses Registry - keys instead. It still creates the same entries in the - msi. - - http://sourceforge.net/mailarchive/message.php?msg_id=9075241 - - Note that the Target of the form [#FileId] expands out to the - full path of the file. A target of the form [!FileId] - expands to the short name of the file (i.e. it includes ~ - characters). We need the full path otherwise the exe name - will be something like SharpDev~1.exe and the - SharpDevelop.exe.manifest file will not be found when - running the application so it does not use XP visual styles. - Unfortunately using [#FileId] generates lots of ICE69 - warnings for the icon and the SharpDevelop.exe target - if they are in a different component. - Not sure why [!FileId] does not produce an error since - the problem seems to be similar, basically the registry - key generated by the ProgId element belongs to one - component whilst we are referencing another component - containing the SharpDevelop.exe and another - containing the icon. - - http://msdn.microsoft.com/library/en-us/msi/setup/ice69.asp - - The ICE69 errors can be ignored for now since the component - being referenced by the file associations will always be installed - even though it is in a different feature. If the FileTypeRegister - addin is an optional install then the ICE69 errors would need to - be resolved. - - We are not using the ProgId element which sets up the - file association registry keys for us, but are specifying them - directly as registry keys. This allows us to use one of the keys - as a key path instead of having to use the parent component's - directory as the key path. The key path is what is used - by the installer to detect whether the component is installed. - Using the component's parent directory (i.e. the Bin folder) - is not feasible since the file associations may not be installed - if the user does not install them in the feature tree. - --> - <RegistryValue Id="SD.booprojfile" Root="HKCR" Type="string" Key="SD.booprojfile" Value="Boo Project" KeyPath="yes" /> - <RegistryValue Id="SD.booprojfile.command" Root="HKCR" Type="string" Key="SD.booprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.booprojfile.icon" Root="HKCR" Type="string" Key="SD.booprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> - <RegistryValue Id="SD.booprojfile.association" Root="HKCR" Type="string" Key=".booproj" Value="SD.booprojfile" /> - </Component> - <Component Id="CSharpFileAssociation" Guid="C98CAD28-2903-4B3A-8C56-B4A09AEC4509" DiskId="1"> - <RegistryValue Id="SD.csfile" Root="HKCR" Type="string" Key="SD.csfile" Value="C# File" KeyPath="yes" /> - <RegistryValue Id="SD.csfile.command" Root="HKCR" Type="string" Key="SD.csfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.csfile.icon" Root="HKCR" Type="string" Key="SD.csfile\DefaultIcon" Value=""[#cs.ico]"" /> - <RegistryValue Id="SD.csfile.association" Root="HKCR" Type="string" Key=".cs" Value="SD.csfile" /> - </Component> - <Component Id="SharpDevelopCSharpProjectFileAssociation" Guid="3BDC1362-4363-42AF-821D-B06516A715E2" DiskId="1"> - <RegistryValue Id="SD.csprojfile" Root="HKCR" Type="string" Key="SD.csprojfile" Value="C# Project" KeyPath="yes" /> - <RegistryValue Id="SD.csproj.command" Root="HKCR" Type="string" Key="SD.csprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.csproj.icon" Root="HKCR" Type="string" Key="SD.csprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> - <RegistryValue Id="SD.csproj.association" Root="HKCR" Type="string" Key=".csproj" Value="SD.csprojfile" /> - </Component> - <Component Id="PythonProjectFileAssociation" Guid="6BA02209-9C7A-42A3-85BC-407FA4C0B646" DiskId="1"> - <RegistryValue Id="SD.pyprojfile" Root="HKCR" Type="string" Key="SD.pyprojfile" Value="Python Project File" KeyPath="yes" /> - <RegistryValue Id="SD.pyprojfile.command" Root="HKCR" Type="string" Key="SD.pyprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.pyprojfile.icon" Root="HKCR" Type="string" Key="SD.pyprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> - <RegistryValue Id="SD.pyprojfile.association" Root="HKCR" Type="string" Key=".pyproj" Value="SD.pyprojfile" /> - </Component> - <Component Id="ResxFileAssociation" Guid="EA3BA93F-C2EE-4FB2-AEA7-A661A3054AB1" DiskId="1"> - <RegistryValue Id="SD.resxfile" Root="HKCR" Type="string" Key="SD.resxfile" Value="Resx File" KeyPath="yes" /> - <RegistryValue Id="SD.resxfile.command" Root="HKCR" Type="string" Key="SD.resxfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.resxfile.icon" Root="HKCR" Type="string" Key="SD.resxfile\DefaultIcon" Value=""[#resx.ico]"" /> - <RegistryValue Id="SD.resxfile.association" Root="HKCR" Type="string" Key=".resx" Value="SD.resxfile" /> - </Component> - <Component Id="ResourcesFileAssociation" Guid="9CC7AE6F-F0B2-47E7-9DD4-0C571C89F46D" DiskId="1"> - <RegistryValue Id="SD.resourcesfile" Root="HKCR" Type="string" Key="SD.resourcesfile" Value="Resources File" KeyPath="yes" /> - <RegistryValue Id="SD.resourcesfile.command" Root="HKCR" Type="string" Key="SD.resourcesfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.resourcesfile.icon" Root="HKCR" Type="string" Key="SD.resourcesfile\DefaultIcon" Value=""[#resx.ico]"" /> - <RegistryValue Id="SD.resourcesfile.association" Root="HKCR" Type="string" Key=".resources" Value="SD.resourcesfile" /> - </Component> - <Component Id="SharpDevelopAddInFileAssociation" Guid="EBBEA1CE-1CA8-4A69-81ED-D81BD8597A39" DiskId="1"> - <RegistryValue Id="SD.sdaddinfile" Root="HKCR" Type="string" Key="SD.sdaddinfile" Value="SharpDevelop AddIn Installation Package" KeyPath="yes" /> - <RegistryValue Id="SD.sdaddinfile.command" Root="HKCR" Type="string" Key="SD.sdaddinfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.sdaddinfile.icon" Root="HKCR" Type="string" Key="SD.sdaddinfile\DefaultIcon" Value=""[#addin.ico]"" /> - <RegistryValue Id="SD.sdaddinfile.association" Root="HKCR" Type="string" Key=".sdaddin" Value="SD.sdaddinfile" /> - </Component> - <Component Id="VBFileAssociation" Guid="C25FF25E-6E21-432A-A477-40293CE8783B" DiskId="1"> - <RegistryValue Id="SD.vbfile" Root="HKCR" Type="string" Key="SD.vbfile" Value="VB.NET File" KeyPath="yes" /> - <RegistryValue Id="SD.vbfile.command" Root="HKCR" Type="string" Key="SD.vbfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.vbfile.icon" Root="HKCR" Type="string" Key="SD.vbfile\DefaultIcon" Value=""[#vb.ico]"" /> - <RegistryValue Id="SD.vbfile.association" Root="HKCR" Type="string" Key=".vb" Value="SD.vbfile" /> - </Component> - <Component Id="SharpDevelopVBProjectFileAssociation" Guid="BDA641EE-B110-4E09-B4C6-7D2DBBFA578A" DiskId="1"> - <RegistryValue Id="SD.vbprojfile" Root="HKCR" Type="string" Key="SD.vbprojfile" Value="VB.NET Project" KeyPath="yes" /> - <RegistryValue Id="SD.vbprojfile.command" Root="HKCR" Type="string" Key="SD.vbprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.vbprojfile.icon" Root="HKCR" Type="string" Key="SD.vbprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> - <RegistryValue Id="SD.vbprojfile.association" Root="HKCR" Type="string" Key=".vbproj" Value="SD.vbprojfile" /> - </Component> - <Component Id="SharpDevelopWixProjectFileAssociation" Guid="FB612902-CD8E-4161-8F95-3280AE433D11" DiskId="1"> - <RegistryValue Id="SD.wixprojfile" Root="HKCR" Type="string" Key="SD.wixprojfile" Value="WiX Project" KeyPath="yes" /> - <RegistryValue Id="SD.wixprojfile.command" Root="HKCR" Type="string" Key="SD.wixprojfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.wixprojfile.icon" Root="HKCR" Type="string" Key="SD.wixprojfile\DefaultIcon" Value=""[#prjx.ico]"" /> - <RegistryValue Id="SD.wixprojfile.association" Root="HKCR" Type="string" Key=".wixproj" Value="SD.wixprojfile" /> - </Component> - <Component Id="XmlFileAssociation" Guid="EB0CC9A4-2934-465B-831F-0EC4B718A162" DiskId="1"> - <RegistryValue Id="SD.xmlfile" Root="HKCR" Type="string" Key="SD.xmlfile" Value="XML File" KeyPath="yes" /> - <RegistryValue Id="SD.xmlfile.command" Root="HKCR" Type="string" Key="SD.xmlfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.xmlfile.icon" Root="HKCR" Type="string" Key="SD.xmlfile\DefaultIcon" Value=""[#xml.ico]"" /> - <RegistryValue Id="SD.xmlfile.association" Root="HKCR" Type="string" Key=".xml" Value="SD.xmlfile" /> - </Component> - <Component Id="SharpDevelopSolutionFileAssociation" Guid="A5E7E0DE-7A32-439D-8155-C4335A2E4876" DiskId="1"> - <RegistryValue Id="SD.slnfile" Root="HKCR" Type="string" Key="SD.slnfile" Value="SharpDevelop Solution" KeyPath="yes" /> - <RegistryValue Id="SD.slnfile.command" Root="HKCR" Type="string" Key="SD.slnfile\shell\open\command" Value=""[#SharpDevelop.exe]" "%1"" /> - <RegistryValue Id="SD.slnfile.icon" Root="HKCR" Type="string" Key="SD.slnfile\DefaultIcon" Value=""[#cmbx.ico]"" /> - <RegistryValue Id="SD.slnfile.association" Root="HKCR" Type="string" Key=".sln" Value="SD.slnfile" /> - </Component> - <Component Id="SharpDevelopExeFiles" Guid="B9427DC8-6C86-4D1A-B3DC-1B0E0F1F1DC1" DiskId="1"> - <File Source="..\..\bin\SharpDevelop.exe.config" Id="SharpDevelop.exe.config" Name="SharpDevelop.exe.config" /> - </Component> - <Component Id="ICSharpCodeBuildTasksDll" Guid="E94FCC8C-9741-45EF-AFDA-9F9CF02BF3F7" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.Build.Tasks.dll" Id="ICSharpCode.Build.Tasks.dll" Name="ICSharpCode.Build.Tasks.dll" Assembly=".net" AssemblyApplication="ICSharpCode.Build.Tasks.dll" AssemblyManifest="ICSharpCode.Build.Tasks.dll" KeyPath="yes" /> - </Component> - <Component Id="BuildTasksTargetFiles" DiskId="1" Guid="8BA49EB8-394B-4357-8CB8-638A1AB83E54"> - <File Source="..\..\bin\SharpDevelop.CodeAnalysis.targets" Id="SharpDevelop.CodeAnalysis.targets" Name="SharpDevelop.CodeAnalysis.targets" /> - <File Source="..\..\bin\SharpDevelop.CheckMSBuild35Features.targets" Id="SharpDevelop.CheckMSBuild35Features.targets" Name="SharpDevelop.CheckMSBuild35Features.targets" /> - <File Source="..\..\bin\SharpDevelop.TargetingPack.targets" Id="SharpDevelop.TargetingPack.targets" Name="SharpDevelop.TargetingPack.targets" /> - </Component> - <Component Id="ICSharpCodeCoreDll" Guid="DFD67330-0F6D-4069-9B03-90E2BB7B9273" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.Core.dll" Id="ICSharpCode.Core.dll" Name="ICSharpCode.Core.dll" Assembly=".net" AssemblyApplication="ICSharpCode.Core.dll" AssemblyManifest="ICSharpCode.Core.dll" KeyPath="yes" /> - </Component> - <Component Id="ICSharpCodeNRefactoryDll" Guid="D12F8C70-8D9F-43E5-BEA9-AEA170B1DD4F" 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="ICSharpCodeNRefactoryCSharpDll" Guid="66F957E3-6C7A-4243-9C58-257C1D9D3360" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.NRefactory.CSharp.dll" Id="ICSharpCode.NRefactory.CSharp.dll" Name="ICSharpCode.NRefactory.CSharp.dll" Assembly=".net" AssemblyApplication="ICSharpCode.NRefactory.CSharp.dll" AssemblyManifest="ICSharpCode.NRefactory.CSharp.dll" KeyPath="yes" /> - </Component> - <Component Id="ICSharpCodeNRefactoryXmlDll" Guid="F0D2E678-84E1-43A6-BE3E-86232763F6D8" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.NRefactory.Xml.dll" Id="ICSharpCode.NRefactory.Xml.dll" Name="ICSharpCode.NRefactory.Xml.dll" Assembly=".net" AssemblyApplication="ICSharpCode.NRefactory.Xml.dll" AssemblyManifest="ICSharpCode.NRefactory.Xml.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 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="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="GraphSharpDll" Guid="f0095de3-7fdb-4a63-961f-6b3b9f8a754f" DiskId="1"> - <File Source="..\..\bin\GraphSharp.dll" Name="GraphSharp.dll" Id="GraphSharp.dll" Assembly=".net" AssemblyApplication="GraphSharp.dll" AssemblyManifest="GraphSharp.dll" KeyPath="yes" /> - </Component> - <Component Id="GraphSharpControlsDll" Guid="8c7d8646-b2f4-4285-8880-5d86a1aea4f3" DiskId="1"> - <File Source="..\..\bin\GraphSharp.Controls.dll" Name="GraphSharp.Controls.dll" Id="GraphSharp.Controls.dll" Assembly=".net" AssemblyApplication="GraphSharp.Controls.dll" AssemblyManifest="GraphSharp.Controls.dll" KeyPath="yes" /> - </Component> - <Component Id="QuickGraphDll" Guid="f0893d49-6690-4cb7-ac7a-2931a8146134" DiskId="1"> - <File Source="..\..\bin\QuickGraph.dll" Name="QuickGraph.dll" Id="QuickGraph.dll" Assembly=".net" AssemblyApplication="QuickGraph.dll" AssemblyManifest="QuickGraph.dll" KeyPath="yes" /> - </Component> - <Component Id="GraphSharpContractsDll" Guid="a0a8f6a4-3caa-4095-a9e2-fa25ce239b13" DiskId="1"> - <File Source="..\..\bin\GraphSharp.Contracts.dll" Name="GraphSharp.Contracts.dll" Id="GraphSharp.Contracts.dll" Assembly=".net" AssemblyApplication="GraphSharp.Contracts.dll" AssemblyManifest="GraphSharp.Contracts.dll" KeyPath="yes" /> - </Component> - <Component Id="MicrosoftContractsDll" Guid="fce77701-43d5-41a2-92fa-636050893a54" DiskId="1"> - <File Source="..\..\bin\Microsoft.Contracts.dll" Name="Microsoft.Contracts.dll" Id="Microsoft.Contracts.dll" Assembly=".net" AssemblyApplication="Microsoft.Contracts.dll" AssemblyManifest="Microsoft.Contracts.dll" KeyPath="yes" /> - </Component> - <Component Id="WPFExtensionsDll" Guid="932d7d54-773c-4132-ba0a-31f0d4590ee5" DiskId="1"> - <File Source="..\..\bin\WPFExtensions.dll" Name="WPFExtensions.dll" Id="WPFExtensions.dll" Assembly=".net" AssemblyApplication="WPFExtensions.dll" AssemblyManifest="WPFExtensions.dll" KeyPath="yes" /> - </Component> - <Component Id="MonoCecilDll" Guid="F714FD47-9E0A-488F-8F44-11C0220721E3" DiskId="1"> - <File Source="..\..\bin\Mono.Cecil.dll" Id="Mono.Cecil.dll" Name="Mono.Cecil.dll" Assembly=".net" AssemblyApplication="Mono.Cecil.dll" AssemblyManifest="Mono.Cecil.dll" KeyPath="yes" /> - </Component> - <Directory Id="ToolsFolder" Name="Tools"> - <Directory Id="NUnitFolder" Name="NUnit"> - <Component Guid="108E9A75-72D2-40FA-B65C-EFB5ECADB245" Id="NUnitConsoleFiles" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\nunit-console.exe" Id="nunit_console.exe" Name="nunit-console.exe" Assembly=".net" AssemblyApplication="nunit_console.exe" AssemblyManifest="nunit_console.exe" KeyPath="yes" /> - <File Source="..\..\bin\Tools\NUnit\nunit-console.exe.config" Id="nunit_console.exe.config" Name="nunit-console.exe.config" /> - </Component> - <Component Guid="AB89A052-2D0A-426E-B755-6FA1A9C1C64F" Id="NUnitFrameworkDll" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\nunit.framework.dll" Id="nunit.framework.dll" Name="nunit.framework.dll" /> - </Component> - <Component Guid="C996D268-4471-4CBF-9015-43357863360A" Id="NUnitConsoleX86Files" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\nunit-console-x86.exe" Name="nunit-console-x86.exe" Id="nunit_console_x86.exe" Assembly=".net" KeyPath="yes" AssemblyApplication="nunit_console_x86.exe" AssemblyManifest="nunit_console_x86.exe" /> - <File Source="..\..\bin\Tools\NUnit\nunit-console-x86.exe.config" Name="nunit-console-x86.exe.config" Id="nunit_console_x86.exe.config" /> - </Component> - <Directory Id="lib" Name="lib"> - <Component Guid="7A72406E-0E83-4CE7-BB3A-2F3CC2D6F91B" Id="NUnitConsoleRunnerDll" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\lib\nunit-console-runner.dll" Name="nunit-console-runner.dll" Id="lib.nunit_console_runner.dll" KeyPath="yes" /> - </Component> - <Component Guid="81A713E3-4905-4006-8510-3E1F3AB9AD13" Id="NUnitCoreDll" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\lib\nunit.core.dll" Name="nunit.core.dll" Id="lib.nunit.core.dll" KeyPath="yes" /> - </Component> - <Component Guid="8E89CF2B-A866-4488-91F9-9079565FD9AE" Id="NUnitCoreInterfacesDll" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\lib\nunit.core.interfaces.dll" Name="nunit.core.interfaces.dll" Id="lib.nunit.core.interfaces.dll" KeyPath="yes" /> - </Component> - <Component Guid="F9388116-85AE-4BF0-8CF6-0E6B5C3DD15F" Id="NUnitUtilDll" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\lib\nunit.util.dll" Name="nunit.util.dll" Id="lib.nunit.util.dll" KeyPath="yes" /> - </Component> - </Directory> - <Component Guid="FAEE921D-6A1D-48AD-A1AF-7AB39548D1F9" Id="NUnitConsoleDotnet2Files" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2.exe" Name="nunit-console-dotnet2.exe" Id="nunit_console_dotnet2.exe" KeyPath="yes" /> - <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2.exe.config" Name="nunit-console-dotnet2.exe.config" Id="nunit_console_dotnet2.exe.config" /> - </Component> - <Component Guid="6ACE3D5E-9042-4898-BD43-BD39E8DCB879" Id="NUnitConsoleDotnet2X86Files" DiskId="1"> - <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2-x86.exe" Name="nunit-console-dotnet2-x86.exe" Id="nunit_console_dotnet2_x86.exe" KeyPath="yes" /> - <File Source="..\..\bin\Tools\NUnit\nunit-console-dotnet2-x86.exe.config" Name="nunit-console-dotnet2-x86.exe.config" Id="nunit_console_dotnet2_x86.exe.config" /> - </Component> - </Directory> - <Directory Id="OpenCoverFolder" Name="OpenCover"> - <Component Id="OpenCoverGendarmeFrameworkDll" Guid="10810773-419F-4804-871E-1BA483E40D97" DiskId="1"> - <File Id="OpenCover.Gendarme.Framework.dll" Name="Gendarme.Framework.dll" Source="..\..\bin\Tools\OpenCover\Gendarme.Framework.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Gendarme.Framework.dll" AssemblyManifest="OpenCover.Gendarme.Framework.dll" /> - </Component> - <Component Id="OpenCoverGendarmeRulesMaintainabilityDll" Guid="2119F539-9FF0-4C55-8C38-CCC424C2F2A5" DiskId="1"> - <File Id="OpenCover.Gendarme.Rules.Maintainability.dll" Name="Gendarme.Rules.Maintainability.dll" Source="..\..\bin\Tools\OpenCover\Gendarme.Rules.Maintainability.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Gendarme.Rules.Maintainability.dll" AssemblyManifest="OpenCover.Gendarme.Rules.Maintainability.dll" /> - </Component> - <Component Id="OpenCoverLog4netConfig" Guid="C4D1A763-567B-4D72-B68D-8245E8A4526E" DiskId="1"> - <File Id="OpenCover.log4net.config" Name="log4net.config" Source="..\..\bin\Tools\OpenCover\log4net.config" KeyPath="yes" /> - </Component> - <Component Id="OpenCoverLog4netDll" Guid="DFF17E8D-D634-49D2-B53B-B0F190C12245" DiskId="1"> - <File Id="OpenCover.log4net.dll" Name="log4net.dll" Source="..\..\bin\Tools\OpenCover\log4net.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.log4net.dll" AssemblyManifest="OpenCover.log4net.dll" /> - </Component> - <Component Id="OpenCoverMicrosoftPracticesUnityDll" Guid="E7EF4E31-5136-4303-9389-359E8BB7905E" DiskId="1"> - <File Id="OpenCover.Microsoft.Practices.Unity.dll" Name="Microsoft.Practices.Unity.dll" Source="..\..\bin\Tools\OpenCover\Microsoft.Practices.Unity.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Microsoft.Practices.Unity.dll" AssemblyManifest="OpenCover.Microsoft.Practices.Unity.dll" /> - </Component> - <Component Id="OpenCoverMonoCecilDll" Guid="8B24DEA5-45FB-4D99-A9EE-71CACDA1993B" DiskId="1"> - <File Id="OpenCover.Mono.Cecil.dll" Name="Mono.Cecil.dll" Source="..\..\bin\Tools\OpenCover\Mono.Cecil.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Mono.Cecil.dll" AssemblyManifest="OpenCover.Mono.Cecil.dll" /> - </Component> - <Component Id="OpenCoverMonoCecilPdbDll" Guid="90837FF2-4834-499C-BF34-BF8298A4C511" DiskId="1"> - <File Id="OpenCover.Mono.Cecil.Pdb.dll" Name="Mono.Cecil.Pdb.dll" Source="..\..\bin\Tools\OpenCover\Mono.Cecil.Pdb.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Mono.Cecil.Pdb.dll" AssemblyManifest="OpenCover.Mono.Cecil.Pdb.dll" /> - </Component> - <Component Id="OpenCoverConsoleExe" Guid="C829811E-893A-44EE-AC8F-DC1FD1C67649" DiskId="1"> - <File Id="OpenCover.Console.exe" Name="OpenCover.Console.exe" Source="..\..\bin\Tools\OpenCover\OpenCover.Console.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Console.exe" AssemblyManifest="OpenCover.Console.exe" /> - </Component> - <Component Id="OpenCoverConsoleExeConfig" Guid="3DB460CC-3A0E-4EF1-925D-654F0B6BA034" DiskId="1"> - <File Id="OpenCover.Console.exe.config" Name="OpenCover.Console.exe.config" Source="..\..\bin\Tools\OpenCover\OpenCover.Console.exe.config" KeyPath="yes" /> - </Component> - <Component Id="OpenCoverFrameworkDll" Guid="05BACE6F-B879-4CB6-80FC-55BA44D1A39E" DiskId="1"> - <File Id="OpenCover.Framework.dll" Name="OpenCover.Framework.dll" Source="..\..\bin\Tools\OpenCover\OpenCover.Framework.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="OpenCover.Framework.dll" AssemblyManifest="OpenCover.Framework.dll" /> - </Component> - <Directory Id="OpenCoverX64Folder" Name="x64"> - <Component Id="OpenCoverProfilerX64Dll" Guid="58F8307C-E52C-4814-BDB6-8913E45309EB" DiskId="1"> - <File Id="OpenCover.Profiler.x64.dll" Name="OpenCover.Profiler.dll" Source="..\..\bin\Tools\OpenCover\x64\OpenCover.Profiler.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="OpenCoverX86Folder" Name="x86"> - <Component Id="OpenCoverProfilerX86Dll" Guid="59CD3529-07D6-41C9-A3F7-032CF7BA5167" DiskId="1"> - <File Id="OpenCover.Profiler.x86.dll" Name="OpenCover.Profiler.dll" Source="..\..\bin\Tools\OpenCover\x86\OpenCover.Profiler.dll" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - </Directory> - <Component Guid="2EC34D8A-CF14-4E1F-A512-9A596A1C256D" Id="ICSharpCodeCoreWinFormsDll" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.Core.WinForms.dll" Name="ICSharpCode.Core.WinForms.dll" Id="ICSharpCode.Core.WinForms.dll" KeyPath="yes" /> - </Component> - <Component Guid="A124FA3C-F094-4FC2-88BA-D253DB319DC2" Id="AvalonDockDll" DiskId="1"> - <File Source="..\..\bin\AvalonDock.dll" Name="AvalonDock.dll" Id="AvalonDock.dll" KeyPath="yes" /> - </Component> - <Component Guid="C54C86B8-EB49-473F-B7BD-639B71226E9E" Id="ICSharpCodeCorePresentationDll" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.Core.Presentation.dll" Name="ICSharpCode.Core.Presentation.dll" Id="ICSharpCode.Core.Presentation.dll" KeyPath="yes" /> - </Component> - <Component Guid="7ACA96F6-7075-405A-B85D-D5930E984B19" Id="ICSharpCodeAvalonEditDll" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.AvalonEdit.dll" Name="ICSharpCode.AvalonEdit.dll" Id="ICSharpCode.AvalonEdit.dll" KeyPath="yes" /> - </Component> - <Component Guid="84FB3C82-23BD-11DE-8F18-C06F55D89593" Id="ICSharpCodeTreeViewDll" DiskId="1"> - <File Source="..\..\bin\ICSharpCode.TreeView.dll" Name="ICSharpCode.TreeView.dll" Id="ICSharpCode.TreeView.dll" KeyPath="yes" /> - </Component> - <Component Id="ICSharpCodeSharpDevelopBuildWorker35Exe" Guid="5065CD28-3B76-4AB9-B334-1DC1A91AA172" DiskId="1"> - <File Id="ICSharpCode.SharpDevelop.BuildWorker35.exe" Name="ICSharpCode.SharpDevelop.BuildWorker35.exe" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker35.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.BuildWorker35.exe" AssemblyManifest="ICSharpCode.SharpDevelop.BuildWorker35.exe"> - <netfx:NativeImage Id="BuildWorker35NGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - <File Id="ICSharpCode.SharpDevelop.BuildWorker35.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker35.exe.config" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker35.exe.config" /> - </Component> - <Component Id="ICSharpCodeSharpDevelopBuildWorker40Exe" Guid="25731457-7DB4-40F6-8AA9-21AF7F9C04DD" DiskId="1"> - <File Id="ICSharpCode.SharpDevelop.BuildWorker40.exe" Name="ICSharpCode.SharpDevelop.BuildWorker40.exe" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker40.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.SharpDevelop.BuildWorker40.exe" AssemblyManifest="ICSharpCode.SharpDevelop.BuildWorker40.exe"> - <netfx:NativeImage Id="BuildWorker40NGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - <File Id="ICSharpCode.SharpDevelop.BuildWorker40.exe.config" Name="ICSharpCode.SharpDevelop.BuildWorker40.exe.config" Source="..\..\bin\ICSharpCode.SharpDevelop.BuildWorker40.exe.config" /> - </Component> - <Component Id="ICSharpCodeScriptingDll" Guid="62B44EFA-CCB4-4B73-B455-AE3C72B8121F" DiskId="1"> - <File Id="ICSharpCode.Scripting.dll" Name="ICSharpCode.Scripting.dll" Source="..\..\bin\ICSharpCode.Scripting.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.Scripting.dll" AssemblyManifest="ICSharpCode.Scripting.dll" /> - </Component> - <Component Id="SharpDevelopEnvDteDll" Guid="BEB5529F-D774-4C82-AA5A-AA877A64A79E" DiskId="1"> - <File Id="SharpDevelop.EnvDTE.dll" Name="SharpDevelop.EnvDTE.dll" Source="..\..\bin\SharpDevelop.EnvDTE.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="SharpDevelop.EnvDTE.dll" AssemblyManifest="SharpDevelop.EnvDTE.dll" /> - </Component> - <Component Id="ICSharpCodeNRefactoryCecilDll" Guid="5F040FEB-33B4-4B4D-ABAC-85683ED55FDF" DiskId="1"> - <File Id="ICSharpCode.NRefactory.Cecil.dll" Name="ICSharpCode.NRefactory.Cecil.dll" Source="..\..\bin\ICSharpCode.NRefactory.Cecil.dll" KeyPath="yes" /> - </Component> - <Component Id="ICSharpCodeNRefactoryCSharpRefactoringDll" Guid="1A52D4C5-9D69-4FC1-BC63-FD4C13C14267" DiskId="1"> - <File Id="ICSharpCode.NRefactory.CSharp.Refactoring.dll" Name="ICSharpCode.NRefactory.CSharp.Refactoring.dll" Source="..\..\bin\ICSharpCode.NRefactory.CSharp.Refactoring.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="DocFolder" Name="doc"> - <Component Guid="9DCED5AC-B771-4A4F-B4FE-69867BF2EBDE" Id="SharpDevelopDocFiles" DiskId="1"> - <File Source="..\..\doc\BuiltWithSharpDevelop.png" Id="BuiltWithSharpDevelop.png" Name="BuiltWithSharpDevelop.png" /> - <File Source="..\..\doc\copyright.txt" Id="copyright.txt" Name="copyright.txt" /> - <File Source="..\..\doc\license.txt" Name="license.txt" Id="DocFolderLicense.txt" /> - <File Source="..\..\doc\readme.rtf" Name="readme.rtf" Id="readme.rtf" /> - <File Source="..\..\doc\SharpDevelopInfoResources.txt" Id="SharpDevelopInfoResources.txt" Name="SharpDevelopInfoResources.txt" /> - </Component> - <Component Id="DependenciesHtml" Guid="898AC4F4-9331-4C3C-A170-ECB09B890EDD" DiskId="1"> - <File Id="Dependencies.html" Name="Dependencies.html" Source="..\..\doc\Dependencies.html" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="DataFolder" Name="data"> - <Directory Id="ConversionStyleSheetsFolder" Name="ConversionStyleSheets"> - <Component Guid="EEC59BAB-23BE-4FD3-8788-4A6023A6B394" Id="ConversionStyleSheetFiles" DiskId="1"> - <File Source="..\..\data\ConversionStyleSheets\ShowXmlDocumentation.xsl" Id="ShowXmlDocumentation.xsl" Name="ShowXmlDocumentation.xsl" /> - </Component> - </Directory> - <Directory Id="ModesFolder" Name="modes"> - <Component Guid="A716BD06-421C-4379-B99F-3E7874C1FDC7" Id="SyntaxModesFiles" DiskId="1"> - <File Source="..\..\data\modes\C64CSharp.xshd" Id="C64CSharp.xshd" Name="C64CSharp.xshd" /> - <File Source="..\..\data\modes\CSharp-Mode-VSEnh.xshd" Id="CSharp_Mode_VSEnh.xshd" Name="CSharp-Mode-VSEnh.xshd" /> - </Component> - </Directory> - <Directory Id="OptionsFolder" Name="options"> - <Directory Id="TextLibFolder" Name="TextLib"> - <Component Guid="684834D7-0389-4A1B-92D9-AC43100EFD52" Id="TextLibOptionsFiles" DiskId="1"> - <File Source="..\..\data\options\TextLib\ASCIITable.xml" Id="ASCIITable.xml" Name="ASCIITable.xml" /> - <File Source="..\..\data\options\TextLib\CSharpDocumentationTags.xml" Id="CSharpDocumentationTags.xml" Name="CSharpDocumentationTags.xml" /> - <File Source="..\..\data\options\TextLib\Licenses.xml" Name="Licenses.xml" Id="Licenses.xml" /> - <File Source="..\..\data\options\TextLib\XSLT.xml" Name="XSLT.xml" Id="XSLT.xml" /> - </Component> - </Directory> - <Component Guid="997EB70B-D4CB-41E9-9F67-9F33362B3936" Id="OptionsFiles" DiskId="1"> - <File Source="..\..\data\options\SharpDevelopControlLibrary.sdcl" Id="SharpDevelopControlLibrary.sdcl" Name="SharpDevelopControlLibrary.sdcl" /> - <File Source="..\..\data\options\SharpDevelop-templates.xml" Id="SharpDevelop_templates.xml" Name="SharpDevelop-templates.xml" /> - <File Source="..\..\data\options\SharpDevelop-tools.xml" Id="SharpDevelop_tools.xml" Name="SharpDevelop-tools.xml" /> - <File Source="..\..\data\options\StandardHeader.xml" Id="StandardHeader.xml" Name="StandardHeader.xml" /> - </Component> - </Directory> - <Directory Id="LayoutsFolder" Name="layouts"> - <Component Guid="B982324C-D787-425E-BB2C-4EF4C983867D" Id="LayoutFiles" DiskId="1"> - <File Source="..\..\data\layouts\Plain.xml" Name="Plain.xml" Id="Plain.xml" /> - <File Source="..\..\data\layouts\Debug.xml" Name="Debug.xml" Id="Debug.xml" /> - <File Source="..\..\data\layouts\Default.xml" Name="Default.xml" Id="Default.xml" /> - <File Source="..\..\data\layouts\LayoutConfig.xml" Id="LayoutConfig.xml" Name="LayoutConfig.xml" /> - </Component> - </Directory> - <Directory Id="ResourcesFolder" Name="resources"> - <Directory Id="InstallerBitmapsFolder" Name="InstallerBitmaps"> - <Component Guid="9FA2E783-96A7-4D61-BF60-4D923AD34923" Id="InstallerBitmapFiles" DiskId="1"> - <File Source="..\..\data\resources\InstallerBitmaps\up.bmp" Name="up.bmp" Id="up.bmp" /> - <File Source="..\..\data\resources\InstallerBitmaps\default-banner.bmp" Id="default_banner.bmp" Name="default-banner.bmp" /> - <File Source="..\..\data\resources\InstallerBitmaps\default-dialog.bmp" Id="default_dialog.bmp" Name="default-dialog.bmp" /> - <File Source="..\..\data\resources\InstallerBitmaps\exclamic.bmp" Name="exclamic.bmp" Id="exclamic.bmp" /> - <File Source="..\..\data\resources\InstallerBitmaps\info.bmp" Name="info.bmp" Id="info.bmp" /> - <File Source="..\..\data\resources\InstallerBitmaps\new.bmp" Name="new.bmp" Id="new.bmp" /> - </Component> - </Directory> - <Directory Id="LanuagesFolder" Name="languages"> - <Component Guid="52CFA578-E494-48D1-9928-38C3F867C47D" Id="LanguageBitmapFiles" DiskId="1"> - <File Source="..\..\data\resources\languages\usa.png" Name="usa.png" Id="usa.png" /> - <File Source="..\..\data\resources\languages\Arabic.png" Name="Arabic.png" Id="Arabic.png" /> - <File Source="..\..\data\resources\languages\brazil.png" Name="brazil.png" Id="brazil.png" /> - <File Source="..\..\data\resources\languages\bulgaria.png" Name="bulgaria.png" Id="bulgaria.png" /> - <File Source="..\..\data\resources\languages\catalonia.png" Id="catalonia.png" Name="catalonia.png" /> - <File Source="..\..\data\resources\languages\chinalg.png" Name="chinalg.png" Id="chinalg.png" /> - <File Source="..\..\data\resources\languages\czech.png" Name="czech.png" Id="czech.png" /> - <File Source="..\..\data\resources\languages\denmark.png" Name="denmark.png" Id="denmark.png" /> - <File Source="..\..\data\resources\languages\england.png" Name="england.png" Id="england.png" /> - <File Source="..\..\data\resources\languages\finnish.png" Name="finnish.png" Id="finnish.png" /> - <File Source="..\..\data\resources\languages\france.png" Name="france.png" Id="france.png" /> - <File Source="..\..\data\resources\languages\germany.png" Name="germany.png" Id="germany.png" /> - <File Source="..\..\data\resources\languages\hungary.png" Name="hungary.png" Id="hungary.png" /> - <File Source="..\..\data\resources\languages\italy.png" Name="italy.png" Id="italy.png" /> - <File Source="..\..\data\resources\languages\japan.png" Name="japan.png" Id="japan.png" /> - <File Source="..\..\data\resources\languages\LanguageDefinition.xml" Id="LanguageDefinition.xml" Name="LanguageDefinition.xml" /> - <File Source="..\..\data\resources\languages\lithuania.png" Id="lithuania.png" Name="lithuania.png" /> - <File Source="..\..\data\resources\languages\mexico.png" Name="mexico.png" Id="mexico.png" /> - <File Source="..\..\data\resources\languages\netherlands.png" Id="netherlands.png" Name="netherlands.png" /> - <File Source="..\..\data\resources\languages\norway.png" Name="norway.png" Id="norway.png" /> - <File Source="..\..\data\resources\languages\poland.png" Name="poland.png" Id="poland.png" /> - <File Source="..\..\data\resources\languages\portugal.png" Name="portugal.png" Id="portugal.png" /> - <File Source="..\..\data\resources\languages\romania.png" Name="romania.png" Id="romania.png" /> - <File Source="..\..\data\resources\languages\russia.png" Name="russia.png" Id="russia.png" /> - <File Source="..\..\data\resources\languages\Serbia.png" Name="Serbia.png" Id="Serbia.png" /> - <File Source="..\..\data\resources\languages\slovenia.png" Name="slovenia.png" Id="slovenia.png" /> - <File Source="..\..\data\resources\languages\south_korea.png" Id="south_korea.png" Name="south_korea.png" /> - <File Source="..\..\data\resources\languages\spain.png" Name="spain.png" Id="spain.png" /> - <File Source="..\..\data\resources\languages\sweden.png" Name="sweden.png" Id="sweden.png" /> - <File Source="..\..\data\resources\languages\turkey.png" Name="turkey.png" Id="turkey.png" /> - <File Source="..\..\data\resources\languages\uk.png" Name="uk.png" Id="uk.png" /> - </Component> - </Directory> - <Component Guid="D8322576-2925-4F43-ACB0-05369DC5FC67" Id="StringResourceFiles" DiskId="1"> - <File Source="..\..\data\resources\StringResources.tr.resources" Id="StringResources.tr.resources" Name="StringResources.tr.resources" /> - <File Source="..\..\data\resources\StringResources.cz.resources" Id="StringResources.cz.resources" Name="StringResources.cz.resources" /> - <File Source="..\..\data\resources\StringResources.de.resources" Id="StringResources.de.resources" Name="StringResources.de.resources" /> - <File Source="..\..\data\resources\StringResources.es.resources" Id="StringResources.es.resources" Name="StringResources.es.resources" /> - <File Source="..\..\data\resources\StringResources.es-mx.resources" Id="StringResources.es_mx.resources" Name="StringResources.es-mx.resources" /> - <File Source="..\..\data\resources\StringResources.fr.resources" Id="StringResources.fr.resources" Name="StringResources.fr.resources" /> - <File Source="..\..\data\resources\StringResources.hu.resources" Id="StringResources.hu.resources" Name="StringResources.hu.resources" /> - <File Source="..\..\data\resources\StringResources.it.resources" Id="StringResources.it.resources" Name="StringResources.it.resources" /> - <File Source="..\..\data\resources\StringResources.kr.resources" Id="StringResources.kr.resources" Name="StringResources.kr.resources" /> - <File Source="..\..\data\resources\StringResources.nl.resources" Id="StringResources.nl.resources" Name="StringResources.nl.resources" /> - <File Source="..\..\data\resources\StringResources.no.resources" Id="StringResources.no.resources" Name="StringResources.no.resources" /> - <File Source="..\..\data\resources\StringResources.pl.resources" Id="StringResources.pl.resources" Name="StringResources.pl.resources" /> - <File Source="..\..\data\resources\StringResources.pt-br.resources" Id="StringResources.pt_br.resources" Name="StringResources.pt-br.resources" /> - <File Source="..\..\data\resources\StringResources.ro.resources" Id="StringResources.ro.resources" Name="StringResources.ro.resources" /> - <File Source="..\..\data\resources\StringResources.se.resources" Id="StringResources.se.resources" Name="StringResources.se.resources" /> - <File Id="StringResources.zh.resources" Name="StringResources.zh.resources" Source="..\..\data\resources\StringResources.zh.resources" /> - <File Id="StringResources.pt.resources" Name="StringResources.pt.resources" Source="..\..\data\resources\StringResources.pt.resources" /> - <File Id="StringResources.ru.resources" Name="StringResources.ru.resources" Source="..\..\data\resources\StringResources.ru.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\readme.txt" Name="readme.txt" Id="readme.txt" /> - <File Source="..\..\data\schemas\W3C-License.html" Id="W3C_License.html" Name="W3C-License.html" /> - <File Source="..\..\data\schemas\wix.xsd" Name="wix.xsd" Id="Schemas.wix.xsd" /> - <File Source="..\..\data\schemas\wixloc.xsd" Name="wixloc.xsd" Id="Schemas.wixloc.xsd" /> - <File Source="..\..\data\schemas\XMLSchema.xsd" Id="XMLSchema.xsd" Name="XMLSchema.xsd" /> - <File Source="..\..\data\schemas\xslt.xsd" Name="xslt.xsd" Id="xslt.xsd" /> - </Component> - <Component Guid="DDA8760D-3A80-4B99-A892-D31DE4C7656B" Id="WixDIfxAppSchema" DiskId="1"> - <File Source="..\..\data\schemas\difxapp.xsd" Name="difxapp.xsd" Id="schemas.difxapp.xsd" KeyPath="yes" /> - </Component> - <Component Guid="D130268A-9AB7-4B85-BDA3-42F23D9739EE" Id="WixIisSchema" DiskId="1"> - <File Source="..\..\data\schemas\iis.xsd" Name="iis.xsd" Id="schemas.iis.xsd" KeyPath="yes" /> - </Component> - <Component Guid="B3D95F66-6FBC-49E0-AB33-820DF40DF00D" Id="WixNetFxSchema" DiskId="1"> - <File Source="..\..\data\schemas\netfx.xsd" Name="netfx.xsd" Id="schemas.netfx.xsd" KeyPath="yes" /> - </Component> - <Component Guid="BEF94C46-5EA3-4F9F-888C-57773CFE508B" Id="WixPSSchema" DiskId="1"> - <File Source="..\..\data\schemas\ps.xsd" Name="ps.xsd" Id="schemas.ps.xsd" KeyPath="yes" /> - </Component> - <Component Guid="4347F699-3DD1-4DE5-824D-C3CF81DDD94E" Id="WixSqlSchema" DiskId="1"> - <File Source="..\..\data\schemas\sql.xsd" Name="sql.xsd" Id="schemas.sql.xsd" KeyPath="yes" /> - </Component> - <Component Guid="59D8F1AC-5B89-416F-9D5C-38B5B1FE4DE1" Id="WixUtilSchema" DiskId="1"> - <File Source="..\..\data\schemas\util.xsd" Name="util.xsd" Id="schemas.util.xsd" KeyPath="yes" /> - </Component> - <Component Guid="796AF8D7-5647-4E92-9DFD-4C55C578F994" Id="WixVSSchema" DiskId="1"> - <File Source="..\..\data\schemas\vs.xsd" Name="vs.xsd" Id="schemas.vs.xsd" KeyPath="yes" /> - </Component> - <Component Guid="D79044D2-CAF6-4006-AF88-367FC97E86B6" Id="WixMSMQSchema" DiskId="1"> - <File Source="..\..\data\schemas\msmq.xsd" Name="msmq.xsd" Id="schemas.msmq.xsd" KeyPath="yes" /> - </Component> - <Component Guid="C0901A8C-00A4-4F2C-9A46-96D50A687D52" Id="WixFirewallSchema" DiskId="1"> - <File Source="..\..\data\schemas\firewall.xsd" Name="firewall.xsd" Id="schemas.wix.firewall.xsd" KeyPath="yes" /> - </Component> - <Component Guid="CA5C2E97-D332-4FA3-8782-50A3FC09FAC7" Id="WixGamingSchema" DiskId="1"> - <File Source="..\..\data\schemas\gaming.xsd" Name="gaming.xsd" Id="schemas.wix.gaming.xsd" KeyPath="yes" /> - </Component> - <Component Id="NuGetNuspecSchema" Guid="D45BFB38-1F09-48C2-B5E1-F1B1F073E4D1" DiskId="1"> - <File Id="nuspec.xsd" Name="nuspec.xsd" Source="..\..\data\schemas\nuspec.xsd" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="TemplatesFolder" Name="templates"> - <Directory Id="FileTemplatesFolder" Name="file"> - <Directory Id="CSharpFileTemplatesFolder" Name="CSharp"> - <Component Guid="6F4016F3-AAE0-465F-893B-AE694EA309C2" Id="CSharpFileTemplates" DiskId="1"> - <File Source="..\..\data\templates\file\CSharp\CSharp.Empty.xft" Id="CSharp.Empty.xft" Name="CSharp.Empty.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.EmptyClass.xft" Id="CSharp.EmptyClass.xft" Name="CSharp.EmptyClass.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Exception.xft" Id="CSharp.Exception.xft" Name="CSharp.Exception.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Forms.Form.xft" Id="CSharp.Forms.Form.xft" Name="CSharp.Forms.Form.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Forms.UserControl.xft" Id="CSharp.Forms.UserControl.xft" Name="CSharp.Forms.UserControl.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Interface.xft" Id="CSharp.Interface.xft" Name="CSharp.Interface.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Patterns.Singleton.xft" Id="CSharp.Patterns.Singleton.xft" Name="CSharp.Patterns.Singleton.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.UnitTest.xft" Id="CSharp.UnitTest.xft" Name="CSharp.UnitTest.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebControl.xft" Id="CSharp.Web.WebControl.xft" Name="CSharp.Web.WebControl.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebForm.xft" Id="CSharp.Web.WebForm.xft" Name="CSharp.Web.WebForm.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebService.xft" Id="CSharp.Web.WebService.xft" Name="CSharp.Web.WebService.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebHandler.xft" Id="CSharp.Web.WebHandler.xft" Name="CSharp.Web.WebHandler.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.WPFFlowDocument.xft" Id="CSharp.WPFFlowDocument.xft" Name="CSharp.WPFFlowDocument.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.WPFPage.xft" Id="CSharp.WPFPage.xft" Name="CSharp.WPFPage.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.WPFPageFunction.xft" Id="CSharp.WPFPageFunction.xft" Name="CSharp.WPFPageFunction.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.WPFResourceDictionary.xft" Id="CSharp.WPFResourceDictionary.xft" Name="CSharp.WPFResourceDictionary.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.WPFUserControl.xft" Id="CSharp.WPFUserControl.xft" Name="CSharp.WPFUserControl.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.WPFWindow.xft" Id="CSharp.WPFWindow.xft" Name="CSharp.WPFWindow.xft" /> - </Component> - <Component Guid="16055582-32EE-4418-A06B-488AC5EC79E4" Id="CSharpStructTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\CSharp\CSharp.Struct.xft" Id="CSharp.Struct.xft" Name="CSharp.Struct.xft" /> - </Component> - <Component Guid="3ffcfcc0-6f9b-11db-9fe1-0800200c9a66" Id="CSharpConfigurationFileTemplates" DiskId="1"> - <File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationElement.xft" Id="CSharp.ConfigurationElement.xft" Name="CSharp.ConfigurationElement.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationElementCollection.xft" Id="CSharp.ConfigurationElementCollection.xft" Name="CSharp.ConfigurationElementCollection.xft" /> - <File Source="..\..\data\templates\file\CSharp\CSharp.ConfigurationSection.xft" Id="CSharp.ConfigurationSection.xft" Name="CSharp.ConfigurationSection.xft" /> - <File Source="..\..\data\templates\file\CSharp\ConfigurationElement.cs" Id="ConfigurationElement.cs" Name="ConfigurationElement.cs" /> - <File Source="..\..\data\templates\file\CSharp\ConfigurationElementCollection.cs" Id="ConfigurationElementCollection.cs" Name="ConfigurationElementCollection.cs" /> - <File Source="..\..\data\templates\file\CSharp\ConfigurationSection.cs" Id="ConfigurationSection.cs" Name="ConfigurationSection.cs" /> - </Component> - <Component Guid="C138E7CD-608E-4B51-8C43-1D716A6DDE70" Id="CSharpRecentFilesCollectionTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\CSharp\CSharp.RecentFilesCollection.xft" Name="CSharp.RecentFilesCollection.xft" Id="CSharp.RecentFilesCollection.xft" KeyPath="yes" /> - </Component> - <Component Guid="C6B92F2F-CE69-4179-BF44-F81E21CBC207" Id="CSharpRecentFilesCollectionTemplateRecentFileElementClass"> - <File Source="..\..\data\templates\file\CSharp\RecentFileElement.cs" Name="RecentFileElement.cs" Id="RecentFileElement.cs" KeyPath="yes" /> - </Component> - <Component Guid="47C2A81B-8BC1-4762-BE7F-8989E8DE0703" Id="CSharpRecentFilesCollectionTemplateRecentFilesCollectionClass" DiskId="1"> - <File Source="..\..\data\templates\file\CSharp\RecentFilesCollection.cs" Name="RecentFilesCollection.cs" Id="RecentFilesCollection.cs" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcControllerFileTemplate" Guid="93AF3CAF-FA60-4765-9D24-415535A7F1F2" DiskId="1"> - <File Id="CSharp.Mvc.Controller.xft" Name="CSharp.Mvc.Controller.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.Controller.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcViewContentPageFileTemplate" Guid="04C2BEF8-DB03-4D56-9176-E85529DB6789" DiskId="1"> - <File Id="CSharp.Mvc.ViewContentPage.xft" Name="CSharp.Mvc.ViewContentPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewContentPage.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcViewMasterPageFileTemplate" Guid="1482F786-8437-4402-8798-D0EF2664FCB4" DiskId="1"> - <File Id="CSharp.Mvc.ViewMasterPage.xft" Name="CSharp.Mvc.ViewMasterPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewMasterPage.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcViewPageFileTemplate" Guid="6C77F3F2-AF84-4927-BD9C-1995D8F30559" DiskId="1"> - <File Id="CSharp.Mvc.ViewPage.xft" Name="CSharp.Mvc.ViewPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewPage.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcViewUserControlFileTemplate" Guid="FF8B0A8A-6C11-471E-AAAC-351D8D762973" DiskId="1"> - <File Id="CSharp.Mvc.ViewUserControl.xft" Name="CSharp.Mvc.ViewUserControl.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.ViewUserControl.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpWcfServiceFileTemplate" Guid="FBCEE100-BE0D-11E0-A9F2-C7D14824019B" DiskId="1"> - <File Id="CSharp.WcfService.xft" Name="CSharp.WcfService.xft" Source="..\..\data\templates\file\CSharp\CSharp.WcfService.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpWcfRestServiceFileTemplate" Guid="00AE5E3C-DD9C-11E0-A234-EEB74724019B" DiskId="1"> - <File Id="CSharp.WcfRestService.xft" Name="CSharp.WcfRestService.xft" Source="..\..\data\templates\file\CSharp\CSharp.WcfRestService.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcRazorLayoutPageFileTemplate" Guid="B64FE4CA-0BFC-40F9-89D9-B8B5967D155C" DiskId="1"> - <File Id="CSharp.Mvc.Razor.LayoutPage.xft" Name="CSharp.Mvc.Razor.LayoutPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.Razor.LayoutPage.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcRazorPartialPageFileTemplate" Guid="42531CD9-8CCC-4A9F-8250-B3DDADA5FA08" DiskId="1"> - <File Id="CSharp.Mvc.Razor.PartialPage.xft" Name="CSharp.Mvc.Razor.PartialPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.Razor.PartialPage.xft" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvcRazorViewPageFileTemplate" Guid="A288D1B3-FC55-4E98-91C0-DCF10C80ACB7" DiskId="1"> - <File Id="CSharp.Mvc.Razor.ViewPage.xft" Name="CSharp.Mvc.Razor.ViewPage.xft" Source="..\..\data\templates\file\CSharp\CSharp.Mvc.Razor.ViewPage.xft" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="MiscFileTemplatesFolder" Name="Misc"> - <Component Guid="861BC115-F99D-4492-AB4E-E7DA2DF0C60A" Id="EmptyMsBuildFileTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\Misc\EmptyMsBuildFile.xft" Id="EmptyMsBuildFile.xft" Name="EmptyMsBuildFile.xft" /> - </Component> - <Component Guid="AE6F11B0-7C9F-49F8-A0EA-7140A399F670" Id="EmptyResourceFileTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\Misc\EmptyResourceFile.xft" Id="EmptyResourceFile.xft" Name="EmptyResourceFile.xft" /> - </Component> - <Component Guid="1D716764-378A-4539-80B2-98D6BA4C2FAB" Id="EmptyTextFileTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\Misc\EmptyTextFile.xft" Id="EmptyTextFile.xft" Name="EmptyTextFile.xft" /> - </Component> - <Component Guid="4E281CDB-E0FB-4583-9B06-A01C5778DE60" Id="EmptyXMLFileTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\Misc\EmptyXMLFile.xft" Id="EmptyXMLFile.xft" Name="EmptyXMLFile.xft" /> - </Component> - <Component Guid="DC3D0C22-B117-4FD8-AFF9-77B0CB36ECD1" Id="AppConfigFileTemplate" DiskId="1"> - <File Source="..\..\data\templates\file\Misc\AppConfigFile.xft" Id="AppConfigFile.xft" Name="AppConfigFile.xft" /> - </Component> - </Directory> - <Directory Id="SharpDevelopFileTemplatesFolder" Name="SharpDevelop"> - <Component Guid="5CD9262F-7A3B-4F28-94FD-43693E669E2B" Id="SharpDevelopFileTemplates" DiskId="1"> - <File Source="..\..\data\templates\file\SharpDevelop\SimpleCommand.xft" Id="SimpleCommand.xft" Name="SimpleCommand.xft" /> - <File Source="..\..\data\templates\file\SharpDevelop\AddInOptions.xft" Id="AddInOptions.xft" Name="AddInOptions.xft" /> - <File Source="..\..\data\templates\file\SharpDevelop\ExampleMenuCommand.xft" Id="ExampleMenuCommand.xft" Name="ExampleMenuCommand.xft" /> - <File Source="..\..\data\templates\file\SharpDevelop\ExampleOptionPanel.xft" Id="ExampleOptionPanel.xft" Name="ExampleOptionPanel.xft" /> - <File Source="..\..\data\templates\file\SharpDevelop\ExamplePad.xft" Id="ExamplePad.xft" Name="ExamplePad.xft" /> - <File Source="..\..\data\templates\file\SharpDevelop\ExampleView.xft" Id="ExampleView.xft" Name="ExampleView.xft" /> - </Component> - </Directory> - <Directory Id="VBFileTemplatesFolder" Name="VB"> - <Component Id="VBFileTemplates" Guid="F51E9F9D-F711-4124-90E6-C8CECD4E890C" DiskId="1"> - <File Id="VB.Empty.xft" Name="VB.Empty.xft" Source="..\..\data\templates\file\VB\VB.Empty.xft" /> - <File Id="VB.EmptyClass.xft" Name="VB.EmptyClass.xft" Source="..\..\data\templates\file\VB\VB.EmptyClass.xft" /> - <File Id="VB.Exception.xft" Name="VB.Exception.xft" Source="..\..\data\templates\file\VB\VB.Exception.xft" /> - <File Id="VB.Forms.Form.xft" Name="VB.Forms.Form.xft" Source="..\..\data\templates\file\VB\VB.Forms.Form.xft" /> - <File Id="VB.Forms.UserControl.xft" Name="VB.Forms.UserControl.xft" Source="..\..\data\templates\file\VB\VB.Forms.UserControl.xft" /> - <File Id="VB.Interface.xft" Name="VB.Interface.xft" Source="..\..\data\templates\file\VB\VB.Interface.xft" /> - <File Id="VB.Module.xft" Name="VB.Module.xft" Source="..\..\data\templates\file\VB\VB.Module.xft" /> - <File Id="VB.MyExtensionClass.xft" Name="VB.MyExtensionClass.xft" Source="..\..\data\templates\file\VB\VB.MyExtensionClass.xft" /> - <File Id="VB.Patterns.Singleton.xft" Name="VB.Patterns.Singleton.xft" Source="..\..\data\templates\file\VB\VB.Patterns.Singleton.xft" /> - <File Id="VB.Structure.xft" Name="VB.Structure.xft" Source="..\..\data\templates\file\VB\VB.Structure.xft" /> - <File Id="VB.UnitTest.xft" Name="VB.UnitTest.xft" Source="..\..\data\templates\file\VB\VB.UnitTest.xft" /> - <File Id="VB.Web.WebControl.xft" Name="VB.Web.WebControl.xft" Source="..\..\data\templates\file\VB\VB.Web.WebControl.xft" /> - <File Id="VB.Web.WebForm.xft" Name="VB.Web.WebForm.xft" Source="..\..\data\templates\file\VB\VB.Web.WebForm.xft" /> - <File Id="VB.Web.WebHandler.xft" Name="VB.Web.WebHandler.xft" Source="..\..\data\templates\file\VB\VB.Web.WebHandler.xft" /> - <File Id="VB.Web.WebService.xft" Name="VB.Web.WebService.xft" Source="..\..\data\templates\file\VB\VB.Web.WebService.xft" /> - <File Id="VB.WPFFlowDocument.xft" Name="VB.WPFFlowDocument.xft" Source="..\..\data\templates\file\VB\VB.WPFFlowDocument.xft" /> - <File Id="VB.WPFPage.xft" Name="VB.WPFPage.xft" Source="..\..\data\templates\file\VB\VB.WPFPage.xft" /> - <File Id="VB.WPFPageFunction.xft" Name="VB.WPFPageFunction.xft" Source="..\..\data\templates\file\VB\VB.WPFPageFunction.xft" /> - <File Id="VB.WPFResourceDictionary.xft" Name="VB.WPFResourceDictionary.xft" Source="..\..\data\templates\file\VB\VB.WPFResourceDictionary.xft" /> - <File Id="VB.WPFUserControl.xft" Name="VB.WPFUserControl.xft" Source="..\..\data\templates\file\VB\VB.WPFUserControl.xft" /> - <File Id="VB.WPFWindow.xft" Name="VB.WPFWindow.xft" Source="..\..\data\templates\file\VB\VB.WPFWindow.xft" /> - </Component> - <Component Id="VBMvcControllerFileTemplate" Guid="E56644A3-2A6C-4E49-88E2-85EEDA3B0999" DiskId="1"> - <File Id="VB.Mvc.Controller.xft" Name="VB.Mvc.Controller.xft" Source="..\..\data\templates\file\VB\VB.Mvc.Controller.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcViewContentPageFileTemplate" Guid="D1A45934-F42E-4B69-82CA-FF0769A39268" DiskId="1"> - <File Id="VB.Mvc.ViewContentPage.xft" Name="VB.Mvc.ViewContentPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewContentPage.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcViewMasterPageFileTemplate" Guid="014285CD-C24F-4C40-9C31-089C83E09660" DiskId="1"> - <File Id="VB.Mvc.ViewMasterPage.xft" Name="VB.Mvc.ViewMasterPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewMasterPage.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcViewPageFileTemplate" Guid="4C6C4367-AC3E-49F3-AA89-2EC2AF5D27C5" DiskId="1"> - <File Id="VB.Mvc.ViewPage.xft" Name="VB.Mvc.ViewPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewPage.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcViewUserControlFileTemplate" Guid="A6272501-2DB7-48B5-AF86-7D53016DF29A" DiskId="1"> - <File Id="VB.Mvc.ViewUserControl.xft" Name="VB.Mvc.ViewUserControl.xft" Source="..\..\data\templates\file\VB\VB.Mvc.ViewUserControl.xft" KeyPath="yes" /> - </Component> - <Component Id="VBWcfServiceFileTemplate" Guid="A1EABE3E-BE0D-11E0-A4E6-5BD14824019B" DiskId="1"> - <File Id="VB.WcfService.xft" Name="VB.WcfService.xft" Source="..\..\data\templates\file\VB\VB.WcfService.xft" KeyPath="yes" /> - </Component> - <Component Id="VBWcfRestServiceFileTemplate" Guid="28AB44B8-DD9C-11E0-AEE3-30B84724019B" DiskId="1"> - <File Id="VB.WcfRestService.xft" Name="VB.WcfRestService.xft" Source="..\..\data\templates\file\VB\VB.WcfRestService.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcRazorLayoutPageFileTemplate" Guid="2A31914B-FB21-423D-BD2F-7CC3B8D76998" DiskId="1"> - <File Id="VB.Mvc.Razor.LayoutPage.xft" Name="VB.Mvc.Razor.LayoutPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.Razor.LayoutPage.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcRazorPartialPageFileTemplate" Guid="B16D8404-5BFC-4875-BBB0-5952693067E2" DiskId="1"> - <File Id="VB.Mvc.Razor.PartialPage.xft" Name="VB.Mvc.Razor.PartialPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.Razor.PartialPage.xft" KeyPath="yes" /> - </Component> - <Component Id="VBMvcRazorViewPageFileTemplate" Guid="64BFEE23-D6CD-4832-899C-C3F8639526AF" DiskId="1"> - <File Id="VB.Mvc.Razor.ViewPage.xft" Name="VB.Mvc.Razor.ViewPage.xft" Source="..\..\data\templates\file\VB\VB.Mvc.Razor.ViewPage.xft" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="WebFileTemplatesFolder" Name="Web"> - <Component Id="EmptyHTMLFileTemplate" Guid="4D820EE2-E443-4824-BEF9-2C031C59875C" DiskId="1"> - <File Id="EmptyHTMLFile.xft" Name="EmptyHTMLFile.xft" Source="..\..\data\templates\file\Web\EmptyHTMLFile.xft" KeyPath="yes" /> - </Component> - <Component Id="EmptyJavaScriptFileTemplate" Guid="7C282AD2-E1B5-4266-AE23-CF60D275C7A4" DiskId="1"> - <File Id="EmptyJavaScript.xft" Name="EmptyJavaScript.xft" Source="..\..\data\templates\file\Web\EmptyJavaScript.xft" KeyPath="yes" /> - </Component> - <Component Id="EmptyStyleSheetFileTemplate" Guid="80DF09D1-68A2-40C1-8694-35D9D467AFDA" DiskId="1"> - <File Id="EmptyStyleSheet.xft" Name="EmptyStyleSheet.xft" Source="..\..\data\templates\file\Web\EmptyStyleSheet.xft" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - <Directory Id="ProjectTemplatesFolder" Name="project"> - <Directory Id="CSharpProjectTemplatesFolder" Name="CSharp"> - <Component Guid="6261E8DA-6374-40B8-93EF-CFE031488C08" Id="CSharpProjectTemplates" DiskId="1"> - <File Source="..\..\data\templates\project\CSharp\WPFNavigationApplication.xpt" Id="CSharpWPFNavigationApplication.xpt" Name="WPFNavigationApplication.xpt" /> - <File Source="..\..\data\templates\project\CSharp\ConsoleProject.xpt" Id="CSharpConsoleProject.xpt" Name="ConsoleProject.xpt" /> - <File Source="..\..\data\templates\project\CSharp\ControlLibrary.xpt" Id="CSharpControlLibrary.xpt" Name="ControlLibrary.xpt" /> - <File Source="..\..\data\templates\project\CSharp\DefaultAssemblyInfo.cs" Id="CSharpDefaultAssemblyInfo.cs" Name="DefaultAssemblyInfo.cs" /> - <File Source="..\..\data\templates\project\CSharp\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\Service.xpt" Name="Service.xpt" Id="CSharpService.xpt" /> - <File Source="..\..\data\templates\project\CSharp\SharedAddin.xpt" Id="CSharpSharedAddin.xpt" Name="SharedAddin.xpt" /> - <File Source="..\..\data\templates\project\CSharp\SharpDevelopAddin.xpt" Id="CSharpSharpDevelopAddin.xpt" Name="SharpDevelopAddin.xpt" /> - <File Source="..\..\data\templates\project\CSharp\SharpDevelopMacro.xpt" Id="CSharpSharpDevelopMacro.xpt" Name="SharpDevelopMacro.xpt" /> - <File Source="..\..\data\templates\project\CSharp\WebpageProject.xpt" Id="CSharpWebpageProject.xpt" Name="WebpageProject.xpt" /> - <File Source="..\..\data\templates\project\CSharp\WPFApplication.xpt" Id="CSharpWPFApplication.xpt" Name="WPFApplication.xpt" /> - <File Source="..\..\data\templates\project\CSharp\SilverlightApplication.xpt" Id="CSharpSilverlightApplication.xpt" Name="SilverlightApplication.xpt" /> - <File Id="PortableAssemblyInfo.cs" Name="PortableAssemblyInfo.cs" Source="..\..\data\templates\project\CSharp\PortableAssemblyInfo.cs" /> - <File Id="PortableLibrary.xpt" Name="PortableLibrary.xpt" Source="..\..\data\templates\project\CSharp\PortableLibrary.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> - <Component Id="CSharpMvc3WebProjectTemplate" Guid="9B2CB6D6-7C79-4324-88AA-4F61A8CBB0AD" DiskId="1"> - <File Id="CSharp.Mvc3WebProject.xpt" Name="Mvc3WebProject.xpt" Source="..\..\data\templates\project\CSharp\Mvc3WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvc4WebProjectTemplate" Guid="A7390705-CDC6-4B4E-A0F9-0D985C76A5B3" DiskId="1"> - <File Id="CSharp.Mvc4WebProject.xpt" Name="Mvc4WebProject.xpt" Source="..\..\data\templates\project\CSharp\Mvc4WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="EmptyCSharpMvc3WebProjectTemplate" Guid="0C0ADD18-C2A6-4CBC-85BA-8B206621536C" DiskId="1"> - <File Id="Empty.CSharp.Mvc3WebProject.xpt" Name="EmptyMvc3WebProject.xpt" Source="..\..\data\templates\project\CSharp\EmptyMvc3WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="EmptyCSharpMvc4WebProjectTemplate" Guid="7445FCA3-B0C2-4341-9BBE-725E7B6B0C4C" DiskId="1"> - <File Id="Empty.CSharp.Mvc4WebProject.xpt" Name="EmptyMvc4WebProject.xpt" Source="..\..\data\templates\project\CSharp\EmptyMvc4WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="CSharpWcfServiceProjectTemplate" Guid="D793DD78-BE0C-11E0-AC34-34D04824019B" DiskId="1"> - <File Id="CSharp.WcfServiceProject.xpt" Name="CSharp.WcfServiceProject.xpt" Source="..\..\data\templates\project\CSharp\CSharp.WcfServiceProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="CSharpWcfRestServiceProjectTemplate" Guid="8FEE65EC-DD9C-11E0-8968-81B84724019B" DiskId="1"> - <File Id="CSharp.WcfRestServiceProject.xpt" Name="CSharp.WcfRestServiceProject.xpt" Source="..\..\data\templates\project\CSharp\CSharp.WcfRestServiceProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvc3RazorProjectTemplate" Guid="E1292B77-CCF9-4668-AD02-ACA406328947" DiskId="1"> - <File Id="CSharp.Mvc3RazorProject.xpt" Name="Mvc3RazorProject.xpt" Source="..\..\data\templates\project\CSharp\Mvc3RazorProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="CSharpMvc4RazorProjectTemplate" Guid="05F2230F-ACCC-42F3-8EFA-68595EB7ECFC" DiskId="1"> - <File Id="CSharp.Mvc4RazorProject.xpt" Name="Mvc4RazorProject.xpt" Source="..\..\data\templates\project\CSharp\Mvc4RazorProject.xpt" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="MiscProjectTemplatesFolder" Name="Misc"> - <Component Guid="F9A7F832-6EC8-4B15-A037-146BD028C9D5" Id="MiscProjectTemplates" DiskId="1"> - <File Source="..\..\data\templates\project\Misc\BlankSolution.xpt" Id="BlankSolution.xpt" Name="BlankSolution.xpt" /> - </Component> - </Directory> - <Directory Id="VBProjectTemplatesFolder" Name="VB"> - <Component Guid="56C1A294-4C66-49AE-B5B4-2EA43E9FD028" Id="VBProjectTemplates" DiskId="1"> - <File Source="..\..\data\templates\project\VB\SharpDevelopMacro.xpt" Id="VBSharpDevelopMacro.xpt" Name="SharpDevelopMacro.xpt" /> - <File Source="..\..\data\templates\project\VB\ConsoleProject.xpt" Id="VBConsoleProject.xpt" Name="ConsoleProject.xpt" /> - <File Source="..\..\data\templates\project\VB\ControlLibrary.xpt" Id="VBControlLibrary.xpt" Name="ControlLibrary.xpt" /> - <File Source="..\..\data\templates\project\VB\DefaultAssemblyInfo.vb" Id="VBDefaultAssemblyInfo.vb" Name="DefaultAssemblyInfo.vb" /> - <File Source="..\..\data\templates\project\VB\EmptyProject.xpt" Id="VBEmptyProject.xpt" Name="EmptyProject.xpt" /> - <File Source="..\..\data\templates\project\VB\FormsProject.xpt" Id="VBFormsProject.xpt" Name="FormsProject.xpt" /> - <File Source="..\..\data\templates\project\VB\Library.xpt" Name="Library.xpt" Id="VBLibrary.xpt" /> - <File Source="..\..\data\templates\project\VB\Service.xpt" Name="Service.xpt" Id="VBService.xpt" /> - <File Source="..\..\data\templates\project\VB\SharedAddin.xpt" Id="VBSharedAddin.xpt" Name="SharedAddin.xpt" /> - <File Source="..\..\data\templates\project\VB\SharpDevelopAddin.xpt" Id="VBSharpDevelopAddin.xpt" Name="SharpDevelopAddin.xpt" /> - <File Id="MySettings.settings" Name="MySettings.settings" Source="..\..\data\templates\project\VB\MySettings.settings" /> - <File Id="MyWpfExtension.vb" Name="MyWpfExtension.vb" Source="..\..\data\templates\project\VB\MyWpfExtension.vb" /> - <File Id="VB.NotifyIcon.xpt" Name="NotifyIcon.xpt" Source="..\..\data\templates\project\VB\NotifyIcon.xpt" /> - <File Id="VB.NotifyIconResources.resx" Name="NotifyIconResources.resx" Source="..\..\data\templates\project\VB\NotifyIconResources.resx" /> - <File Id="VB.SharpDevelopCustomTool.xpt" Name="SharpDevelopCustomTool.xpt" Source="..\..\data\templates\project\VB\SharpDevelopCustomTool.xpt" /> - <File Id="VB.SharpDevelopCustomToolTemplate.xft.xml" Name="SharpDevelopCustomToolTemplate.xft.xml" Source="..\..\data\templates\project\VB\SharpDevelopCustomToolTemplate.xft.xml" /> - <File Id="SilverlightApplication.xpt" Name="SilverlightApplication.xpt" Source="..\..\data\templates\project\VB\SilverlightApplication.xpt" /> - <File Id="WebpageProject.xpt" Name="WebpageProject.xpt" Source="..\..\data\templates\project\VB\WebpageProject.xpt" /> - <File Id="VB.WebService.xpt" Name="WebService.xpt" Source="..\..\data\templates\project\VB\WebService.xpt" /> - <File Id="WPFApplication.xpt" Name="WPFApplication.xpt" Source="..\..\data\templates\project\VB\WPFApplication.xpt" /> - <File Id="WPFAssemblyInfo.vb" Name="WPFAssemblyInfo.vb" Source="..\..\data\templates\project\VB\WPFAssemblyInfo.vb" /> - <File Id="WPFNavigationApplication.xpt" Name="WPFNavigationApplication.xpt" Source="..\..\data\templates\project\VB\WPFNavigationApplication.xpt" /> - </Component> - <Component Id="VBMvc3WebProjectTemplate" Guid="ED880219-5D19-4224-928B-1323FF38ADD1" DiskId="1"> - <File Id="VB.Mvc3WebProject.xpt" Name="Mvc3WebProject.xpt" Source="..\..\data\templates\project\VB\Mvc3WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="VBMvc4WebProjectTemplate" Guid="2E9A64C8-CCCD-434D-B06C-3BFDA6032EBF" DiskId="1"> - <File Id="VB.Mvc4WebProject.xpt" Name="Mvc4WebProject.xpt" Source="..\..\data\templates\project\VB\Mvc4WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="EmptyVBMvc3WebProjectTemplate" Guid="7E148426-CAB9-4940-9C0F-F32EEAA0F507" DiskId="1"> - <File Id="Empty.VB.Mvc3WebProject.xpt" Name="EmptyMvc3WebProject.xpt" Source="..\..\data\templates\project\VB\EmptyMvc3WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="EmptyVBMvc4WebProjectTemplate" Guid="FB3D1D9D-F511-4AF0-BE34-5B8859710684" DiskId="1"> - <File Id="Empty.VB.Mvc4WebProject.xpt" Name="EmptyMvc4WebProject.xpt" Source="..\..\data\templates\project\VB\EmptyMvc4WebProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="VBWcfServiceProjectTemplate" Guid="FF1C11DA-BE0C-11E0-A35E-6FD04824019B" DiskId="1"> - <File Id="VB.WcfServiceProject.xpt" Name="VB.WcfServiceProject.xpt" Source="..\..\data\templates\project\VB\VB.WcfServiceProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="VBWcfRestServiceProjectTemplate" Guid="A45203E0-DD9C-11E0-974A-93B84724019B" DiskId="1"> - <File Id="VB.WcfRestServiceProject.xpt" Name="VB.WcfRestServiceProject.xpt" Source="..\..\data\templates\project\VB\VB.WcfRestServiceProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="VBMvc3RazorProjectTemplate" Guid="A801A2B6-FA38-4EE2-B38C-DE970491C979" DiskId="1"> - <File Id="VB.Mvc3RazorProject.xpt" Name="Mvc3RazorProject.xpt" Source="..\..\data\templates\project\VB\Mvc3RazorProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="VBMvc4RazorProjectTemplate" Guid="573888E6-5A19-402E-B814-66A4161570BD" DiskId="1"> - <File Id="VB.Mvc4RazorProject.xpt" Name="Mvc4RazorProject.xpt" Source="..\..\data\templates\project\VB\Mvc4RazorProject.xpt" KeyPath="yes" /> - </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 Id="ProjectTemplatePackages" Name="packages"> - <Component Id="JQuery172NuGetPackage" Guid="80CBCC4A-E30C-4BE6-8E35-A7EFDABA939D" DiskId="1"> - <File Id="jQuery.1.7.2.nupkg" Name="jQuery.1.7.2.nupkg" Source="..\..\data\templates\packages\jQuery.1.7.2.nupkg" KeyPath="yes" /> - </Component> - <Component Id="Modernizr253NuGetPackage" Guid="0D39E685-992C-4D36-9964-1DE907AF25A3" DiskId="1"> - <File Id="Modernizr.2.5.3.nupkg" Name="Modernizr.2.5.3.nupkg" Source="..\..\data\templates\packages\Modernizr.2.5.3.nupkg" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - </Directory> - <Directory Id="AddInsFolder" Name="AddIns"> - <Component Guid="BD536EB3-6629-4699-9083-673B6175E044" Id="ICSharpCode.SharpDevelop.addin" DiskId="1"> - <File Source="..\..\AddIns\ICSharpCode.SharpDevelop.addin" Id="ICSharpCode.SharpDevelop.addin" Name="ICSharpCode.SharpDevelop.addin" /> - </Component> - <Directory Id="AnalysisFolder" Name="Analysis"> - <Directory Id="CodeAnalysisFolder" Name="CodeAnalysis"> - <Component Guid="6CF33D51-953D-4E5F-840C-7FDCFD757520" Id="CodeAnalysisFiles" DiskId="1"> - <File Source="..\..\AddIns\Analysis\CodeAnalysis\CodeAnalysis.dll" Id="CodeAnalysis.dll" Name="CodeAnalysis.dll" Assembly=".net" AssemblyApplication="CodeAnalysis.dll" AssemblyManifest="CodeAnalysis.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Analysis\CodeAnalysis\CodeAnalysis.addin" Id="CodeAnalysis.addin" Name="CodeAnalysis.addin" /> - </Component> - </Directory> - <Directory Id="CodeCoverageFolder" Name="CodeCoverage"> - <Component Guid="86A8B8D1-9FFD-46A4-84F8-2BD530E1F83E" Id="CodeCoverageFiles" DiskId="1"> - <File Source="..\..\AddIns\Analysis\CodeCoverage\CodeCoverage.dll" Id="CodeCoverage.dll" Name="CodeCoverage.dll" Assembly=".net" AssemblyApplication="CodeCoverage.dll" AssemblyManifest="CodeCoverage.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Analysis\CodeCoverage\CodeCoverage.addin" Id="CodeCoverage.addin" Name="CodeCoverage.addin" /> - </Component> - </Directory> - <Directory Id="UnitTestingFolder" Name="UnitTesting"> - <Component Guid="F2F7F12D-1920-49BC-86B0-65B5A1B76516" Id="UnitTestingAddInFiles" DiskId="1"> - <File Source="..\..\AddIns\Analysis\UnitTesting\UnitTesting.dll" Id="UnitTesting.dll" Name="UnitTesting.dll" Assembly=".net" AssemblyApplication="UnitTesting.dll" AssemblyManifest="UnitTesting.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Analysis\UnitTesting\UnitTesting.addin" Id="UnitTesting.addin" Name="UnitTesting.addin" /> - </Component> - </Directory> - <Directory Id="SourceAnalysis" Name="SourceAnalysis"> - <Component Guid="C9D099BC-CF4D-404A-BB2F-B13D4541DA0F" Id="SharpDevelopSourceAnalysisTargets" DiskId="1"> - <File Source="..\..\AddIns\Analysis\SourceAnalysis\SharpDevelop.SourceAnalysis.targets" Name="SharpDevelop.SourceAnalysis.targets" Id="SharpDevelop.SourceAnalysis.targets" KeyPath="yes" /> - </Component> - <Component Guid="4E61BF16-0C2E-424A-8D1B-80F89B3F456B" Id="SourceAnalysisAddin" DiskId="1"> - <File Source="..\..\AddIns\Analysis\SourceAnalysis\SourceAnalysis.addin" Name="SourceAnalysis.addin" Id="SourceAnalysis.addin" KeyPath="yes" /> - </Component> - <Component Guid="C4A33C3E-91B6-4984-86B1-07C5C49C180D" Id="SourceAnalysisDll" DiskId="1"> - <File Source="..\..\AddIns\Analysis\SourceAnalysis\SourceAnalysis.dll" Name="SourceAnalysis.dll" Id="SourceAnalysis.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="SourceAnalysis.dll" AssemblyManifest="SourceAnalysis.dll" /> - </Component> - </Directory> - <Directory Id="MachineSpecifications" Name="MachineSpecifications"> - <Component Id="MachineSpecificationsAddIn" Guid="03FD4FCC-670F-4298-8CEB-C957AD1BC7A8" DiskId="1"> - <File Id="MachineSpecifications.addin" Name="MachineSpecifications.addin" Source="..\..\AddIns\Analysis\MachineSpecifications\MachineSpecifications.addin" KeyPath="yes" /> - </Component> - <Component Id="MachineSpecificationsDll" Guid="401F4543-20DD-4D0E-9875-ACBD94E512B3" DiskId="1"> - <File Id="MachineSpecifications.dll" Name="MachineSpecifications.dll" Source="..\..\AddIns\Analysis\MachineSpecifications\MachineSpecifications.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="MachineSpecifications.dll" AssemblyManifest="MachineSpecifications.dll" /> - </Component> - <Directory Id="MachineSpecificationsToolsFolder" Name="Tools"> - <Directory Id="Tools.Machine.Specifications.Folder" Name="Machine.Specifications"> - <Component Id="MachineSpecificationsCommandLineDll" Guid="CB6E136D-A654-4E2C-AB09-BCFE84C83E5A" DiskId="1"> - <File Id="CommandLine.dll" Name="CommandLine.dll" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\CommandLine.dll" KeyPath="yes" /> - </Component> - <Component Id="MachineSpecificationsLicenseTxt" Guid="6FFAE9EE-05D3-4982-9BD5-20637CBE7C88" DiskId="1"> - <File Id="License.txt" Name="License.txt" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\License.txt" KeyPath="yes" /> - </Component> - <Component Id="ToolsMachineSpecificationsDll" Guid="57E27B17-BA60-4B00-B890-6E46EAA5192B" DiskId="1"> - <File Id="Machine.Specifications.dll" Name="Machine.Specifications.dll" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\Machine.Specifications.dll" KeyPath="yes" /> - </Component> - <Component Id="MachineSpecificationsReportingDll" Guid="84FEA264-28A5-46E4-90C9-965E57D1E817" DiskId="1"> - <File Id="Machine.Specifications.Reporting.dll" Name="Machine.Specifications.Reporting.dll" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\Machine.Specifications.Reporting.dll" KeyPath="yes" /> - </Component> - <Component Id="Mspec_clr4Exe" Guid="D2718022-A14A-4685-9957-D9C6ED94446D" DiskId="1"> - <File Id="mspec_clr4.exe" Name="mspec-clr4.exe" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\mspec-clr4.exe" KeyPath="yes" /> - </Component> - <Component Id="Mspec_x86_clr4Exe" Guid="D98BECDC-04F6-4C97-B965-40662EA8B538" DiskId="1"> - <File Id="mspec_x86_clr4.exe" Name="mspec-x86-clr4.exe" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\mspec-x86-clr4.exe" KeyPath="yes" /> - </Component> - <Component Id="Mspec_x86Exe" Guid="95A9043B-2942-46C4-983C-E62B52FD1816" DiskId="1"> - <File Id="mspec_x86.exe" Name="mspec-x86.exe" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\mspec-x86.exe" KeyPath="yes" /> - </Component> - <Component Id="MspecExe" Guid="7999FE7B-9EBD-4BC0-9DA9-9035D36C3E54" DiskId="1"> - <File Id="mspec.exe" Name="mspec.exe" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\mspec.exe" KeyPath="yes" /> - </Component> - <Component Id="MachineSpecificationsSparkDll" Guid="BD2396DC-DE40-46C4-B00E-E13FEC899226" DiskId="1"> - <File Id="Spark.dll" Name="Spark.dll" Source="..\..\AddIns\Analysis\MachineSpecifications\Tools\Machine.Specifications\Spark.dll" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - </Directory> - <!--<Directory Id="CodeQualityFolder" Name="CodeQuality"> - <Component Guid="E821D255-269F-44BB-992E-BC98B8349B1C" Id="CodeQualityFiles" DiskId="1"> - <File Source="..\..\AddIns\Analysis\CodeQuality\ICSharpCode.CodeQuality.dll" Id="ICSharpCode.CodeQuality.dll" Name="ICSharpCode.CodeQuality.dll" Assembly=".net" AssemblyApplication="ICSharpCode.CodeQuality.dll" AssemblyManifest="ICSharpCode.CodeQuality.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Analysis\CodeQuality\CodeQuality.addin" Id="CodeQuality.addin" Name="CodeQuality.addin" /> - </Component> - </Directory>--> - </Directory> - <Directory Id="BackendBindingsFolder" Name="BackendBindings"> - <Directory Id="CSharpBindingFolder" Name="CSharpBinding"> - <Component Guid="1E6F20EC-6BF4-45C0-AE99-319FBF568BD1" Id="CSharpBindingFiles" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\CSharpBinding\CSharpBinding.dll" Id="CSharpBinding.dll" Name="CSharpBinding.dll" Assembly=".net" AssemblyApplication="CSharpBinding.dll" AssemblyManifest="CSharpBinding.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\BackendBindings\CSharpBinding\CSharpBinding.addin" Id="CSharpBinding.addin" Name="CSharpBinding.addin" /> - </Component> - </Directory> - <Directory Id="VBBindingFolder" Name="VBBinding"> - <Component Guid="0F51B5A5-517F-40B3-932A-A0A693926E67" Id="VBBindingFiles" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\VBBinding\ICSharpCode.VBBinding.dll" Id="ICSharpCode.VBBinding.dll" Name="ICSharpCode.VBBinding.dll" Assembly=".net" AssemblyApplication="ICSharpCode.VBBinding.dll" AssemblyManifest="ICSharpCode.VBBinding.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\BackendBindings\VBBinding\VBBinding.addin" Id="VBBinding.addin" Name="VBBinding.addin" /> - </Component> - </Directory> - <Directory Id="WixBindingFolder" Name="WixBinding"> - <Component Guid="A54D7821-BBFD-49E9-8FFB-1AB224E25521" Id="WixBindingFiles" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\WixBinding.dll" Id="WixBinding.dll" Name="WixBinding.dll" Assembly=".net" AssemblyApplication="WixBinding.dll" AssemblyManifest="WixBinding.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\BackendBindings\WixBinding\SetupDialogControlLibrary.sdcl" Id="SetupDialogControlLibrary.sdcl" Name="SetupDialogControlLibrary.sdcl" /> - <File Source="..\..\AddIns\BackendBindings\WixBinding\WixBinding.addin" Id="WixBinding.addin" Name="WixBinding.addin" /> - </Component> - <Directory Id="WixBindingTemplatesFolder" Name="Templates"> - <Component Id="EmptyWixFileTemplate" DiskId="1" Guid="51546D91-43BA-4311-8E16-34AC9E1BFC7A"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixFile.xft" Id="EmptyWixFile.xft" Name="EmptyWixFile.xft" /> - </Component> - <Component Id="WixDefaultLicenseRtf" DiskId="1" Guid="A4E7062F-30A7-474F-8DBD-47652F12548E"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\DefaultLicense.rtf" Id="DefaultLicense.rtf" Name="DefaultLicense.rtf" /> - </Component> - <Component Guid="C880DD6E-EFD9-436D-8CC3-B91A45BB53E1" DiskId="1" Id="WixUIFeatureTreeProjectTemplate"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIFeatureTreeProject.xpt" Id="WixUIFeatureTreeProject.xpt" Name="WixUIFeatureTreeProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="5F910AA8-EA41-46C7-9B8B-9DA6DAC835F0" Id="WixUIInstallDirProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIInstallDirProject.xpt" Id="WixUIInstallDirProject.xpt" Name="WixUIInstallDirProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="36FF353F-2C22-42D1-9E2A-B2CE5FC2BA56" Id="WixUIMinimalProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIMinimalProject.xpt" Id="WixUIMinimalProject.xpt" Name="WixUIMinimalProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="D930CB0E-1554-457C-A274-FF58D10D3659" Id="WixUIMondoProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixUIMondoProject.xpt" Id="WixUIMondoProject.xpt" Name="WixUIMondoProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="5226A62B-AE20-42E9-8921-446B4BE6E95C" Id="EmptyWixProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixProject.xpt" Name="EmptyWixProject.xpt" Id="EmptyWixProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="533F3774-9D09-4F72-9218-5CA4AD4217C0" Id="EmptyWixDialogTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\EmptyWixDialog.xft" Name="EmptyWixDialog.xft" Id="EmptyWixDialog.xft" KeyPath="yes" /> - </Component> - <Component Guid="20656F0D-CAE2-4B19-B5DE-ABF842A5939B" Id="WixDialogTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\WixBinding\Templates\WixDialog.xft" Name="WixDialog.xft" Id="WixDialog.xft" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - <!-- - <Directory Id="PythonBinding" Name="PythonBinding"> - <Component Guid="AF97A77A-F986-4284-BC0A-9568B1419FC1" Id="IpyExe" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\ipy.exe" Name="ipy.exe" Id="ipy.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ipy.exe" AssemblyManifest="ipy.exe"> - <netfx:NativeImage Id="IpyExeNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - </Component> - <Component Guid="A7C0416F-8B3F-4C64-A25C-8B48AADD957D" Id="IronPythonDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.dll" Id="IronPython.dll" Name="IronPython.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.dll" AssemblyManifest="IronPython.dll"> - <netfx:NativeImage Id="IronPythonDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - </Component> - <Component Guid="ADBB3544-DE83-4676-A95E-3BC497ABC94D" Id="PythonBuildTasksDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Python.Build.Tasks.dll" Id="Python.Build.Tasks.dll" Name="Python.Build.Tasks.dll" Assembly=".net" AssemblyApplication="Python.Build.Tasks.dll" AssemblyManifest="Python.Build.Tasks.dll" KeyPath="yes" /> - </Component> - <Component Guid="CD84F3F1-F3E8-4EF2-A1BD-8092076EBBB8" Id="PythonBindingAddin" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\PythonBinding.addin" Id="PythonBinding.addin" Name="PythonBinding.addin" KeyPath="yes" /> - </Component> - <Component Guid="AE71C296-051C-4C19-90B0-2C261D58CCFA" Id="PythonBindingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\PythonBinding.dll" Id="PythonBinding.dll" Name="PythonBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PythonBinding.dll" AssemblyManifest="PythonBinding.dll" /> - </Component> - <Component Guid="A74FF259-8D05-4FA5-9664-63F2ECB6E568" Id="SharpDevelopBuildPythonTargets" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\SharpDevelop.Build.Python.targets" Id="SharpDevelop.Build.Python.targets" Name="SharpDevelop.Build.Python.targets" KeyPath="yes" /> - </Component> - <Directory Id="PythonTemplates" Name="Templates"> - <Component Guid="2F5F1DC5-A04F-4FF2-8B68-BC803B19F80A" Id="PythonConsoleProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\ConsoleProject.xpt" Id="Templates.ConsoleProject.xpt" Name="ConsoleProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="1F303642-32B5-4B95-A8A8-3EEB2ED76F21" Id="PythonEmptyFileTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\Empty.xft" Name="Empty.xft" Id="Templates.Empty.xft" KeyPath="yes" /> - </Component> - <Component Guid="99E81C31-321C-4A15-A502-7E5E27891810" Id="PythonEmptyClassTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyClass.xft" Id="Templates.EmptyClass.xft" Name="EmptyClass.xft" KeyPath="yes" /> - </Component> - <Component Guid="C7F4F370-4070-4BFD-9325-2D2FFEC27A5A" Id="PythonEmptyFormTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyForm.xft" Id="EmptyForm.xft" Name="EmptyForm.xft" KeyPath="yes" /> - </Component> - <Component Guid="FBEF6AC5-7658-46C3-9805-239B4223CAB3" Id="PythonEmptyUserControlTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\EmptyUserControl.xft" Id="EmptyUserControl.xft" Name="EmptyUserControl.xft" KeyPath="yes" /> - </Component> - <Component Guid="C077D46F-D6EF-4187-9715-3EAD8A43A1EC" Id="PythonFormsProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\FormsProject.xpt" Id="Templates.FormsProject.xpt" Name="FormsProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="6AE9C385-3B6A-4DD6-9CB9-92EDEEEF3FCF" Id="PythonLibraryProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\LibraryProject.xpt" Id="Templates.LibraryProject.xpt" Name="LibraryProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="PythonWPFApplicationProjectTemplate" Guid="5453F13D-AF45-464D-859E-A4DD8A66557C" DiskId="1"> - <File Id="Python.WPFApplication.xpt" Name="WPFApplication.xpt" Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\WPFApplication.xpt" KeyPath="yes" /> - </Component> - <Component Id="PythonWPFWindowFileTemplate" Guid="BCCF7EE5-9A2F-42D2-B1B5-D885D6B51BDF" DiskId="1"> - <File Id="Python.WPFWindow.xft" Name="WPFWindow.xft" Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\WPFWindow.xft" KeyPath="yes" /> - </Component> - <Component Id="PythonSilverlightApplicationProjectTemplate" Guid="B0A5F30B-ABA7-4482-A928-1A02F8C83FD8" DiskId="1"> - <File Id="Python.SilverlightApplication.xpt" Name="SilverlightApplication.xpt" Source="..\..\AddIns\BackendBindings\PythonBinding\Templates\SilverlightApplication.xpt" KeyPath="yes" /> - </Component> - </Directory> - <Component Guid="DE04B306-0C6D-434C-A6DC-6F450AAFB108" Id="IronPythonModulesDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\IronPython.Modules.dll" Name="IronPython.Modules.dll" Id="IronPython.Modules.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.Modules.dll" AssemblyManifest="IronPython.Modules.dll"> - <netfx:NativeImage Id="IronPythonModulesDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - </Component> - <Component Guid="5849E9E1-39E4-45B5-B2F0-B07F8A21085D" Id="MicrosoftScriptingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Scripting.dll" Name="Microsoft.Scripting.dll" Id="Microsoft.Scripting.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Scripting.dll" AssemblyManifest="Microsoft.Scripting.dll"> - <netfx:NativeImage Id="MicrosoftScriptingDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - </Component> - <Directory Id="PythonLib" Name="Lib"> - <Component Guid="98D4136A-897A-479A-AD50-E89600C5016D" Id="PythonBindingLibRunpyPy" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\runpy.py" Name="runpy.py" Id="runpy.py" KeyPath="yes" /> - </Component> - <Component Guid="E091A881-9015-47A6-ADBE-EAA87A5171C3" Id="PythonBindingLibSitePy" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\site.py" Name="site.py" Id="site.py" KeyPath="yes" /> - </Component> - <Component Guid="240EC6F6-6377-4840-A1C9-BDC15F653669" Id="PythonBindingLibFuturePy" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Lib\__future__.py" Name="__future__.py" Id="__future__.py" KeyPath="yes" /> - </Component> - </Directory> - <Component Guid="6E1D93BF-A105-4526-8BA0-13B69EEB1360" Id="MicrosoftDynamicDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Dynamic.dll" Name="Microsoft.Dynamic.dll" Id="Microsoft.Dynamic.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Dynamic.dll" AssemblyManifest="Microsoft.Dynamic.dll"> - <netfx:NativeImage Id="MicrosoftDynamicDllNGenImage" Priority="1" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" /> - </File> - </Component> - <Directory Id="TestRunner" Name="TestRunner"> - <Component Id="PythonBindingSdTestPy" Guid="7D87D983-8924-456E-8E66-2C6AC76C16A6" DiskId="1"> - <File Id="sdtest.py" Name="sdtest.py" Source="..\..\AddIns\BackendBindings\PythonBinding\TestRunner\sdtest.py" KeyPath="yes" /> - </Component> - <Component Id="PythonBindingSdTestRunnerPy" Guid="E15A20D3-BAA0-476F-9380-0B662D5C8D1E" DiskId="1"> - <File Id="sdtestrunner.py" Name="sdtestrunner.py" Source="..\..\AddIns\BackendBindings\PythonBinding\TestRunner\sdtestrunner.py" KeyPath="yes" /> - </Component> - </Directory> - <Component Id="PythonChironExe" Guid="3BF49CCE-0152-41E6-A693-07EF0F9BEBCF" DiskId="1"> - <File Id="Python.Chiron.exe" Name="Chiron.exe" Source="..\..\AddIns\BackendBindings\PythonBinding\Chiron.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="Python.Chiron.exe" AssemblyManifest="Python.Chiron.exe" /> - </Component> - <Component Id="PythonChironExeConfig" Guid="1078B0F8-3984-45A8-846C-68479D717C03" DiskId="1"> - <File Id="Python.Chiron.exe.Config" Name="Chiron.exe.Config" Source="..\..\AddIns\BackendBindings\PythonBinding\Chiron.exe.Config" KeyPath="yes" /> - </Component> - <Component Id="IronPythonLicenseRtf" Guid="3F3B30E2-9CD4-4D32-95AF-82799C19ED0A" DiskId="1"> - <File Id="IronPython.License.Rtf" Name="License.Rtf" Source="..\..\AddIns\BackendBindings\PythonBinding\License.Rtf" KeyPath="yes" /> - </Component> - <Component Id="MicrosoftScriptingMetadataDll" Guid="7FD24C6E-5E64-4CCB-8C1E-2315498F81B1" DiskId="1"> - <File Id="Microsoft.Scripting.Metadata.dll" Name="Microsoft.Scripting.Metadata.dll" Source="..\..\AddIns\BackendBindings\PythonBinding\Microsoft.Scripting.Metadata.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Scripting.Metadata.dll" AssemblyManifest="Microsoft.Scripting.Metadata.dll" /> - </Component> - <Directory Id="PythonBindingDLLsFolder" Name="DLLs"> - <Component Id="IronPythonWpfDll" Guid="D7A0FA37-CA4A-4678-8650-A8BF37A5FED0" DiskId="1"> - <File Id="IronPython.Wpf.dll" Name="IronPython.Wpf.dll" Source="..\..\AddIns\BackendBindings\PythonBinding\DLLs\IronPython.Wpf.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronPython.Wpf.dll" AssemblyManifest="IronPython.Wpf.dll" /> - </Component> - </Directory> - </Directory> - --> - <Directory Id="FSharpBinding" Name="FSharpBinding"> - <Component Guid="6B4F28AF-133C-4FEB-98DB-67A5405AEB12" Id="FSharpBindingAddin" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\FSharpBinding\FSharpBinding.addin" Name="FSharpBinding.addin" Id="FSharpBinding.addin" KeyPath="yes" /> - </Component> - <Component Guid="810CE373-569B-41C3-ADDA-D2F0E0EFD5DE" Id="FSharpBindingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\FSharpBinding\FSharpBinding.dll" Name="FSharpBinding.dll" Id="FSharpBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="FSharpBinding.dll" AssemblyManifest="FSharpBinding.dll" /> - </Component> - </Directory> - <!-- - <Directory Id="RubyBinding" Name="RubyBinding"> - <Component Guid="7CB6802E-BC09-4796-904C-45EEAD91A5CF" Id="IrExe" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\ir.exe" Name="ir.exe" Id="ir.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="ir.exe" AssemblyManifest="ir.exe" /> - </Component> - <Component Guid="1CE0CC65-3534-4357-BFB7-CB9F0C4E1495" Id="IronRubyDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\IronRuby.dll" Name="IronRuby.dll" Id="IronRuby.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronRuby.dll" AssemblyManifest="IronRuby.dll" /> - </Component> - <Component Guid="2B7F1625-2BAA-4A55-B186-75F7ADCF3BA8" Id="IronRubyLibrariesDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\IronRuby.Libraries.dll" Name="IronRuby.Libraries.dll" Id="IronRuby.Libraries.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="IronRuby.Libraries.dll" AssemblyManifest="IronRuby.Libraries.dll" /> - </Component> - <Component Guid="626C0C34-EF24-443F-8A0E-6CBF0047A50A" Id="IronRubyLicenseApacheHtml" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\LICENSE.APACHE.html" Name="LICENSE.APACHE.html" Id="IronRuby.License.Apache.html" KeyPath="yes" /> - </Component> - <Component Guid="09FCB2E9-FA7E-40B2-8FCF-182C7DF2F5EC" Id="RubyMicrosoftDynamicDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Microsoft.Dynamic.dll" Name="Microsoft.Dynamic.dll" Id="RubyBinding.Microsoft.Dynamic.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.Microsoft.Dynamic.dll" AssemblyManifest="RubyBinding.Microsoft.Dynamic.dll" /> - </Component> - <Component Guid="3E1BAAE7-D366-43B4-88CE-8D2ED5731CC6" Id="RubyMicrosoftScriptingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Microsoft.Scripting.dll" Name="Microsoft.Scripting.dll" Id="RubyBinding.Microsoft.Scripting.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.Microsoft.Scripting.dll" AssemblyManifest="RubyBinding.Microsoft.Scripting.dll" /> - </Component> - <Component Guid="6877EFD9-7005-4BDD-80E6-FB4790436E23" Id="RubyBindingAddin" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\RubyBinding.addin" Name="RubyBinding.addin" Id="RubyBinding.addin" KeyPath="yes" /> - </Component> - <Component Guid="C1185288-280B-4006-8592-6F4FAD69498D" Id="RubyBindingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\RubyBinding.dll" Name="RubyBinding.dll" Id="RubyBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.dll" AssemblyManifest="RubyBinding.dll" /> - </Component> - <Component Id="RubyMicrosoftScriptingMetadataDll" Guid="43F7B715-2726-4E35-B9AC-28D5B4C33180" DiskId="1"> - <File Id="RubyBinding.Microsoft.Scripting.Metadata.dll" Name="Microsoft.Scripting.Metadata.dll" Source="..\..\AddIns\BackendBindings\RubyBinding\Microsoft.Scripting.Metadata.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="RubyBinding.Microsoft.Scripting.Metadata.dll" AssemblyManifest="RubyBinding.Microsoft.Scripting.Metadata.dll" /> - </Component> - <Directory Id="RubyTemplates" Name="Templates"> - <Component Guid="6BF44E09-3910-444C-9A49-C6C811B41CFE" Id="RubyConsoleProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\ConsoleProject.xpt" Name="ConsoleProject.xpt" Id="RubyConsoleProject.xpt" KeyPath="yes" /> - </Component> - <Component Guid="215E4AF7-C1D3-473F-90A2-A621B42BB2CD" Id="RubyEmptyFileTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\Empty.xft" Name="Empty.xft" Id="RubyEmptyFile.xft" KeyPath="yes" /> - </Component> - <Component Guid="B0D712C8-DCC0-48C6-B0DC-F8D6B7AF6351" Id="RubyEmptyClassFileTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyClass.xft" Name="EmptyClass.xft" Id="Templates.EmptyClass2.xft" KeyPath="yes" /> - </Component> - <Component Guid="B11F038D-F71E-409C-AEB9-ED54EBA299F9" Id="RubyEmptyFormFileTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyForm.xft" Name="EmptyForm.xft" Id="Templates.EmptyForm.xft" KeyPath="yes" /> - </Component> - <Component Guid="3F5329F7-72DE-4E44-B36C-F2EF8EED4183" Id="RubyEmptyUserControlFileTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\EmptyUserControl.xft" Name="EmptyUserControl.xft" Id="Templates.EmptyUserControl.xft" KeyPath="yes" /> - </Component> - <Component Guid="6096D8DC-E9AE-41D2-82E3-6284E4878545" Id="RubyFormsProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\FormsProject.xpt" Name="FormsProject.xpt" Id="Templates.FormsProject1.xpt" KeyPath="yes" /> - </Component> - <Component Guid="BDB0208E-B04F-42F5-B3FB-97F77D6C4C7B" Id="RubyLibraryProjectTemplate" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\LibraryProject.xpt" Name="LibraryProject.xpt" Id="LibraryProject.xpt" KeyPath="yes" /> - </Component> - <Component Id="RubyWPFApplicationProjectTemplate" Guid="758A30A3-10EF-44A8-BD05-F55043D8CCC5" DiskId="1"> - <File Id="Ruby.WPFApplication.xpt" Name="WPFApplication.xpt" Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\WPFApplication.xpt" KeyPath="yes" /> - </Component> - <Component Id="RubyWPFWindowFileTemplate" Guid="F2CD996D-B165-4F30-B70F-33DC1841610D" DiskId="1"> - <File Id="Ruby.WPFWindow.xft" Name="WPFWindow.xft" Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\WPFWindow.xft" KeyPath="yes" /> - </Component> - <Component Id="RubySilverlightApplicationProjectTemplate" Guid="8FB9E6F2-4096-4593-9B57-D18D29B1AE1E" DiskId="1"> - <File Id="Ruby.SilverlightApplication.xpt" Name="SilverlightApplication.xpt" Source="..\..\AddIns\BackendBindings\RubyBinding\Templates\SilverlightApplication.xpt" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="RubyBindingTestRunner" Name="TestRunner"> - <Component Id="RubyBindingSdSelectedTestsFileRb" Guid="8F37FDB9-ED10-4A13-857A-FD0BD7231D13" DiskId="1"> - <File Id="RubyBinding.sdselectedtestsfile.rb" Name="sdselectedtestsfile.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdselectedtestsfile.rb" KeyPath="yes" /> - </Component> - <Component Id="RubyBindingSdTestRb" Guid="2666C77A-AB65-4142-AE13-4216FA2E4AAC" DiskId="1"> - <File Id="RubyBinding.sdtest.rb" Name="sdtest.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtest.rb" KeyPath="yes" /> - </Component> - <Component Id="RubyBindingSdTestResultRb" Guid="618BB1E1-FCC2-452E-A244-21AD73ED480F" DiskId="1"> - <File Id="RubyBinding.sdtestresult.rb" Name="sdtestresult.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestresult.rb" KeyPath="yes" /> - </Component> - <Component Id="RubyBindingSdTestResultWriterRb" Guid="0E12860F-23C3-4A15-85D5-7FFAC0D243FC" DiskId="1"> - <File Id="RubyBinding.sdtestresultwriter.rb" Name="sdtestresultwriter.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestresultwriter.rb" KeyPath="yes" /> - </Component> - <Component Id="RubyBindingSdTestRunnerRb" Guid="4F6D3229-6A2F-4505-B0C5-9286853C19AA" DiskId="1"> - <File Id="RubyBinding.sdtestrunner.rb" Name="sdtestrunner.rb" Source="..\..\AddIns\BackendBindings\RubyBinding\TestRunner\sdtestrunner.rb" KeyPath="yes" /> - </Component> - </Directory> - <Component Id="RubyChironExe" Guid="2ACC66D7-B47B-4F14-A0D6-7C3737E781C8" DiskId="1"> - <File Id="Ruby.Chiron.exe" Name="Chiron.exe" Source="..\..\AddIns\BackendBindings\RubyBinding\Chiron.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="Ruby.Chiron.exe" AssemblyManifest="Ruby.Chiron.exe" /> - </Component> - <Component Id="RubyChironExeConfig" Guid="6D992ECC-18C1-492B-BCF7-E61913E1C947" DiskId="1"> - <File Id="Ruby.Chiron.exe.config" Name="Chiron.exe.config" Source="..\..\AddIns\BackendBindings\RubyBinding\Chiron.exe.config" KeyPath="yes" /> - </Component> - </Directory> - --> - <Directory Id="XamlBinding" Name="XamlBinding"> - <Component Guid="34D119F8-F7C8-40DD-B354-FA50A3349033" Id="ICSharpCodeXamlBindingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\XamlBinding\ICSharpCode.XamlBinding.dll" Name="ICSharpCode.XamlBinding.dll" Id="ICSharpCode.XamlBinding.dll" KeyPath="yes" /> - </Component> - <Component Guid="4113C6DC-D11B-45FA-9D38-D3DD0A92C280" Id="XamlBindingAddin" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\XamlBinding\XamlBinding.addin" Name="XamlBinding.addin" Id="XamlBinding.addin" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="CppBinding" Name="CppBinding"> - <Component Guid="B7C63B27-82B7-42E8-893F-5034CB153074" Id="CppBindingAddin" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\CppBinding\CppBinding.addin" Name="CppBinding.addin" Id="CppBinding.addin" KeyPath="yes" /> - </Component> - <Component Guid="AC3EFDF3-3063-464A-9072-1285BAAD3579" Id="CppBindingDll" DiskId="1"> - <File Source="..\..\AddIns\BackendBindings\CppBinding\CppBinding.dll" Name="CppBinding.dll" Id="CppBinding.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="AspNet.Mvc" Name="AspNet.Mvc"> - <Component Id="AspNetMvcAddin" Guid="2ADAB116-3E40-4A12-B6CD-EE41C482807A" DiskId="1"> - <File Id="AspNet.Mvc.addin" Name="AspNet.Mvc.addin" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\AspNet.Mvc.addin" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcDll" Guid="82AC3FE9-9E23-4B9D-9186-8F2F1BF77391" DiskId="1"> - <File Id="AspNet.Mvc.dll" Name="AspNet.Mvc.dll" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\AspNet.Mvc.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="AspNet.Mvc.dll" AssemblyManifest="AspNet.Mvc.dll" /> - </Component> - <Component Id="AspNetMvcMonoTextTemplatingDll" Guid="6FD58851-E8C9-4479-88AE-953FBC80313B" DiskId="1"> - <File Id="AspNet.Mvc.Mono.TextTemplating.dll" Name="Mono.TextTemplating.dll" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\Mono.TextTemplating.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="AspNet.Mvc.Mono.TextTemplating.dll" AssemblyManifest="AspNet.Mvc.Mono.TextTemplating.dll" /> - </Component> - <Component Id="SystemWebRazorDll" Guid="A37AB289-9804-4643-AD11-EAEA3733ACEF" DiskId="1"> - <File Id="System.Web.Razor.dll" Name="System.Web.Razor.dll" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\System.Web.Razor.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="System.Web.Razor.dll" AssemblyManifest="System.Web.Razor.dll" /> - </Component> - <Component Id="AspNetMvcTextTemplatingDll" Guid="1DDE71EB-EFF3-4190-9F8C-20D2C1EFEC34" DiskId="1"> - <File Id="AspNet.Mvc.TextTemplating.dll" Name="TextTemplating.dll" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\TextTemplating.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="AspNet.Mvc.TextTemplating.dll" AssemblyManifest="AspNet.Mvc.TextTemplating.dll" /> - </Component> - <Directory Id="AspNetMvcItemTemplates" Name="ItemTemplates"> - <Directory Id="AspNetMvcCSharpItemTemplates" Name="CSharp"> - <Directory Id="AspNetMvcCSharpCodeTemplates" Name="CodeTemplates"> - <Directory Id="AspNetMvcCSharpControllerTemplates" Name="AddController"> - <Component Id="AspNetMvcCSharpControllerTemplate" Guid="C6B007F6-3D25-442F-A6CF-523A88975B8F" DiskId="1"> - <File Id="Asp.Net.Mvc.CSharp.Controller.tt" Name="Controller.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddController\Controller.tt" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="AspNetMvcCSharpAddViewTemplates" Name="AddView"> - <Directory Id="AspNetMvcAddViewAspxCSharpTemplates" Name="AspxCSharp"> - <Component Id="AspNetMvcAspxCSharpCreateTemplate" Guid="886DF077-C542-47FB-BF93-1F127C0A8473" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.CSharp.Create.tt" Name="Create.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\AspxCSharp\Create.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxCSharpDeleteTemplate" Guid="25C742E0-6725-4A63-BBCC-F5FAF44488DF" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.CSharp.Delete.tt" Name="Delete.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\AspxCSharp\Delete.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxCSharpDetailsTemplate" Guid="6A146749-A263-4AF9-A6EC-5D10D39373E2" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.CSharp.Details.tt" Name="Details.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\AspxCSharp\Details.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxCSharpEditTemplate" Guid="185D314C-A513-4C01-9CAC-0FC03C26006F" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.CSharp.Edit.tt" Name="Edit.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\AspxCSharp\Edit.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxCSharpEmptyTemplate" Guid="575EC741-AED2-4A86-9CA7-33A0F3F92CE4" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.CSharp.Empty.tt" Name="Empty.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\AspxCSharp\Empty.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxCSharpListTemplate" Guid="5C0A2D20-4B10-45B8-B576-C5BBA3D7BC36" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.CSharp.List.tt" Name="List.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\AspxCSharp\List.tt" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="AspNetMvcAddViewCSharpRazorTemplates" Name="CSHTML"> - <Component Id="AspNetMvcRazorCSharpCreateTemplate" Guid="CE522D36-3446-4E06-8A40-26777C5C3549" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.CSharp.Create.tt" Name="Create.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\CSHTML\Create.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorCSharpDeleteTemplate" Guid="B01503A5-41DE-4DAD-A8B1-2EB751C0C291" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.CSharp.Delete.tt" Name="Delete.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\CSHTML\Delete.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorCSharpDetailsTemplate" Guid="C6CE8ECD-CB7E-450D-95B2-C803BF05F7BE" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.CSharp.Details.tt" Name="Details.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\CSHTML\Details.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorCSharpEditTemplate" Guid="8AF10FAC-FB95-41D4-9793-3B54CE266A6B" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.CSharp.Edit.tt" Name="Edit.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\CSHTML\Edit.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorCSharpEmptyTemplate" Guid="F6978D6B-73C9-44EC-84F7-186E345BD0BD" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.CSharp.Empty.tt" Name="Empty.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\CSHTML\Empty.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorCSharpListTemplate" Guid="3B409AAC-73D3-4B99-88F4-0A3FE742D41A" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.CSharp.List.tt" Name="List.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\CSharp\CodeTemplates\AddView\CSHTML\List.tt" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - </Directory> - </Directory> - <Directory Id="AspNetMvcVisualBasicItemTemplates" Name="VisualBasic"> - <Directory Id="AspNetMvcVisualBasicCodeTemplates" Name="CodeTemplates"> - <Directory Id="AspNetVisualBasicControllerTemplates" Name="AddController"> - <Component Id="AspNetMvcVisualBasicControllerTemplate" Guid="493833D0-B6DE-45C0-8CAD-6F0EB0CDBCAD" DiskId="1"> - <File Id="Asp.Net.Mvc.VisualBasic.Controller.tt" Name="Controller.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddController\Controller.tt" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="AspNetMvcVisualBasicAddViewTemplates" Name="AddView"> - <Directory Id="AspNetMvcAddViewAspxVisualBasicTemplates" Name="AspxVisualBasic"> - <Component Id="AspNetMvcAspxVisualBasicCreateTemplate" Guid="8AD83D56-7243-447F-9754-211B1B01CDA4" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.VisualBasic.Create.tt" Name="Create.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\AspxVisualBasic\Create.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxVisualBasicDeleteTemplate" Guid="216C98E8-9230-4DE8-BCA9-FFE102855086" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.VisualBasic.Delete.tt" Name="Delete.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\AspxVisualBasic\Delete.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxVisualBasicDetailsTemplate" Guid="D28A3F26-2C94-446B-931C-AC9BC1CE7630" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.VisualBasic.Details.tt" Name="Details.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\AspxVisualBasic\Details.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxVisualBasicEditTemplate" Guid="A8DB75CC-A862-410C-9D23-838C949C384E" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.VisualBasic.Edit.tt" Name="Edit.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\AspxVisualBasic\Edit.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxVisualBasicEmptyTemplate" Guid="8869AD33-91FA-40A5-916F-6CEC75B0C24B" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.VisualBasic.Empty.tt" Name="Empty.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\AspxVisualBasic\Empty.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcAspxVisualBasicListTemplate" Guid="467B5C1F-6049-4959-9644-324C8B864F8D" DiskId="1"> - <File Id="Asp.Net.Mvc.Aspx.VisualBasic.List.tt" Name="List.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\AspxVisualBasic\List.tt" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="AspNetMvcAddViewVisualBasicRazorTemplates" Name="VBHTML"> - <Component Id="AspNetMvcRazorVisualBasicCreateTemplate" Guid="BE295D71-42BE-4BE1-8176-AB986A70E05F" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.VisualBasic.Create.tt" Name="Create.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\VBHTML\Create.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorVisualBasicDeleteTemplate" Guid="5953BC09-0E95-433D-AFD9-E941FB5A5D7E" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.VisualBasic.Delete.tt" Name="Delete.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\VBHTML\Delete.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorVisualBasicDetailsTemplate" Guid="7BE25182-E032-49C5-AFC4-48CA5265F36C" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.VisualBasic.Details.tt" Name="Details.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\VBHTML\Details.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorVisualBasicEditTemplate" Guid="79751B4D-9B92-41AB-A3B5-44765CE14104" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.VisualBasic.Edit.tt" Name="Edit.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\VBHTML\Edit.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorVisualBasicEmptyTemplate" Guid="8DCDA6A0-214F-4E71-9D83-F9DD713E3A99" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.VisualBasic.Empty.tt" Name="Empty.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\VBHTML\Empty.tt" KeyPath="yes" /> - </Component> - <Component Id="AspNetMvcRazorVisualBasicListTemplate" Guid="215BCC21-6976-4358-9E54-E0D6CB4BDE66" DiskId="1"> - <File Id="Asp.Net.Mvc.Razor.VisualBasic.List.tt" Name="List.tt" Source="..\..\AddIns\BackendBindings\AspNet.Mvc\ItemTemplates\VisualBasic\CodeTemplates\AddView\VBHTML\List.tt" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - </Directory> - </Directory> - </Directory> - </Directory> - <!-- - <Directory Id="JavaScriptBinding" Name="JavaScriptBinding"> - <Component Id="Antlr3RuntimeDll" Guid="CD73166D-0ACB-4A3D-8023-06DAC6CB903A" DiskId="1"> - <File Id="Antlr3.Runtime.dll" Name="Antlr3.Runtime.dll" Source="..\..\AddIns\BackendBindings\JavaScriptBinding\Antlr3.Runtime.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Antlr3.Runtime.dll" AssemblyManifest="Antlr3.Runtime.dll" /> - </Component> - <Component Id="JavaScriptBindingAddin" Guid="36874185-9C8E-4E3D-BC22-FAF59EA52B1A" DiskId="1"> - <File Id="JavaScriptBinding.addin" Name="JavaScriptBinding.addin" Source="..\..\AddIns\BackendBindings\JavaScriptBinding\JavaScriptBinding.addin" KeyPath="yes" /> - </Component> - <Component Id="JavaScriptBindingDll" Guid="A1EC7B85-0DFB-4CCD-8A60-49A481F0FAEC" DiskId="1"> - <File Id="JavaScriptBinding.dll" Name="JavaScriptBinding.dll" Source="..\..\AddIns\BackendBindings\JavaScriptBinding\JavaScriptBinding.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="JavaScriptBinding.dll" AssemblyManifest="JavaScriptBinding.dll" /> - </Component> - </Directory> - --> - </Directory> - <Directory Id="DisplayBindingsFolder" Name="DisplayBindings"> - <Directory Id="FormsDesignerFolder" Name="FormsDesigner"> - <Component Guid="14E454AB-8F83-4FB3-9EDE-92B7D5333998" Id="FormsDesignerFiles" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.dll" Id="FormsDesigner.dll" Name="FormsDesigner.dll" Assembly=".net" AssemblyApplication="FormsDesigner.dll" AssemblyManifest="FormsDesigner.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.addin" Id="FormsDesigner.addin" Name="FormsDesigner.addin" /> - </Component> - </Directory> - <Directory Id="IconEditorFolder" Name="IconEditor"> - <Component Guid="A32C8CC1-705D-4BFF-B9CE-A4D867DD2EFA" Id="IconEditorFiles" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\IconEditor\ICSharpCode.IconEditor.dll" Id="ICSharpCode.IconEditor.dll" Name="ICSharpCode.IconEditor.dll" Assembly=".net" AssemblyApplication="ICSharpCode.IconEditor.dll" AssemblyManifest="ICSharpCode.IconEditor.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\DisplayBindings\IconEditor\IconEditor.addin" Id="IconEditor.addin" Name="IconEditor.addin" /> - </Component> - </Directory> - <Directory Id="ResourceEditorFolder" Name="ResourceEditor"> - <Component Guid="010A8620-382C-477B-9330-51A8B6C48A7A" Id="ResourceEditorFiles" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.dll" Id="ResourceEditor.dll" Name="ResourceEditor.dll" Assembly=".net" AssemblyApplication="ResourceEditor.dll" AssemblyManifest="ResourceEditor.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.addin" Id="ResourceEditor.addin" Name="ResourceEditor.addin" /> - </Component> - </Directory> - <Directory Id="XmlEditorFolder" Name="XmlEditor"> - <Component Guid="BD0B4E5B-CBED-49A0-850C-3EA8DFCF3B17" Id="XmlEditorFiles" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\XmlEditor\XmlEditor.dll" Id="XmlEditor.dll" Name="XmlEditor.dll" Assembly=".net" AssemblyApplication="XmlEditor.dll" AssemblyManifest="XmlEditor.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\DisplayBindings\XmlEditor\XmlEditor.addin" Id="XmlEditor.addin" Name="XmlEditor.addin" /> - </Component> - </Directory> - <!-- - <Directory Id="ClassDiagram" Name="ClassDiagram"> - <Directory Id="Resources" Name="Resources"> - <Component Guid="75152D8C-5D9A-4728-AB18-62637C785A7D" Id="ClassDiagramResources" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\Resources\Bitmaps.resources" Id="Bitmaps.resources" Name="Bitmaps.resources" /> - </Component> - </Directory> - <Component Guid="A8619065-03F6-4AF0-A1F2-81D5C810D8A3" Id="ClassDiagramAddInFiles" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin.addin" Id="ClassDiagram.ClassDiagramAddin.addin" Name="ClassDiagramAddin.addin" /> - <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin.dll" Id="ClassDiagram.ClassDiagramAddin.dll" Name="ClassDiagramAddin.dll" Assembly=".net" AssemblyApplication="ClassDiagram.ClassDiagramAddin.dll" AssemblyManifest="ClassDiagram.ClassDiagramAddin.dll" KeyPath="yes" /> - </Component> - <Component Guid="5F09F966-5605-4381-B346-8231DA0B1C6B" Id="ClassCanvasDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\ClassCanvas.dll" Id="ClassDiagram.ClassCanvas.dll" Name="ClassCanvas.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ClassDiagram.ClassCanvas.dll" AssemblyManifest="ClassDiagram.ClassCanvas.dll" /> - </Component> - <Component Guid="EF2B150B-B0C4-4884-800C-BE904E520CF4" Id="DiagramsDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\ClassDiagram\Diagrams.dll" Id="ClassDiagram.Diagrams.dll" Name="Diagrams.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ClassDiagram.Diagrams.dll" AssemblyManifest="ClassDiagram.Diagrams.dll" /> - </Component> - </Directory> - --> - <Directory Id="AvalonEdit" Name="AvalonEdit"> - <Component Guid="A3376E4E-F07D-4554-ABF5-E91F2DA918E3" Id="AvalonEditAddInAddin" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\AvalonEdit\AvalonEdit.AddIn.addin" Name="AvalonEdit.AddIn.addin" Id="AvalonEdit.AddIn.addin" KeyPath="yes" /> - </Component> - <Component Guid="28171341-2A36-49DD-ACBC-815EE648A1DA" Id="ICSharpCodeAvalonEditAddInDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\AvalonEdit\ICSharpCode.AvalonEdit.AddIn.dll" Name="ICSharpCode.AvalonEdit.AddIn.dll" Id="ICSharpCode.AvalonEdit.AddIn.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="HexEditor" Name="HexEditor"> - <Component Guid="9C299282-1F4C-485B-BEB1-9D84AC4CAA8A" Id="HexEditorAddin" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\HexEditor\HexEditor.addin" Name="HexEditor.addin" Id="HexEditor.addin" KeyPath="yes" /> - </Component> - <Component Guid="1606B107-445F-4233-B72A-D4546A8393BC" Id="HexEditorDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\HexEditor\HexEditor.dll" Name="HexEditor.dll" Id="HexEditor.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="WpfDesign" Name="WpfDesign"> - <Component Guid="E529AC6C-30BE-4406-9F26-B55CAA110D3F" Id="ICSharpCodeWpfDesignAddInDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.AddIn.dll" Name="ICSharpCode.WpfDesign.AddIn.dll" Id="ICSharpCode.WpfDesign.AddIn.dll" KeyPath="yes" /> - </Component> - <Component Guid="1147F468-F5DC-49D3-9CFC-EE794FC7BBC5" Id="ICSharpCodeWpfDesignDesignerDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.Designer.dll" Name="ICSharpCode.WpfDesign.Designer.dll" Id="ICSharpCode.WpfDesign.Designer.dll" KeyPath="yes" /> - </Component> - <Component Guid="C454357F-4ED8-424A-8F6A-0652EC8A0AB8" Id="ICSharpCodeWpfDesignDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.dll" Name="ICSharpCode.WpfDesign.dll" Id="ICSharpCode.WpfDesign.dll" KeyPath="yes" /> - </Component> - <Component Guid="DADDFB3A-A7AE-4D28-BFD6-294ECDFD9D3B" Id="ICSharpCodeWpfDesignXamlDomDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\WpfDesign\ICSharpCode.WpfDesign.XamlDom.dll" Name="ICSharpCode.WpfDesign.XamlDom.dll" Id="ICSharpCode.WpfDesign.XamlDom.dll" KeyPath="yes" /> - </Component> - <Component Guid="E89BBA3D-D267-4E4F-8DA7-E38E864C4317" Id="WpfDesignAddin" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\WpfDesign\WpfDesign.addin" Name="WpfDesign.addin" Id="WpfDesign.addin" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="Data" Name="Data"> - <Component Guid="16E65D48-658D-4C6B-BCCB-9B5450727CFD" Id="ICSharpCodeDataAddin" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.addin" Name="ICSharpCode.Data.addin" Id="ICSharpCode.Data.addin" KeyPath="yes" /> - </Component> - <Component Guid="03DE504B-1757-49CD-A3FC-BAC7210F3565" Id="ICSharpCodeDataAddinDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Addin.dll" Name="ICSharpCode.Data.Addin.dll" Id="ICSharpCode.Data.Addin.dll" KeyPath="yes" /> - </Component> - <Component Guid="48BC48FD-D6C4-471B-A19A-52EC48FDADF3" Id="ICSharpCodeDataCoreDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Core.dll" Name="ICSharpCode.Data.Core.dll" Id="ICSharpCode.Data.Core.dll" KeyPath="yes" /> - </Component> - <Component Guid="FAE360BA-DA88-41E8-A5C7-1DA41E98B8F2" Id="ICSharpCodeDataCoreUIDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.Core.UI.dll" Name="ICSharpCode.Data.Core.UI.dll" Id="ICSharpCode.Data.Core.UI.dll" KeyPath="yes" /> - </Component> - <Component Guid="AC3788E8-6068-46BA-94E0-FE17B9D057A9" Id="ICSharpCodeDataEDMDesignerCoreDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.EDMDesigner.Core.dll" Name="ICSharpCode.Data.EDMDesigner.Core.dll" Id="ICSharpCode.Data.EDMDesigner.Core.dll" KeyPath="yes" /> - </Component> - <Component Guid="D41C8A90-0CD0-4160-9172-1DBE3B55902D" Id="ICSharpCodeDataEDMDesignerCoreUIDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.EDMDesigner.Core.UI.dll" Name="ICSharpCode.Data.EDMDesigner.Core.UI.dll" Id="ICSharpCode.Data.EDMDesigner.Core.UI.dll" KeyPath="yes" /> - </Component> - <Component Guid="31400415-BB2A-49C9-90DF-58F7FD0A8154" Id="ICSharpCodeDataSQLServerDll" DiskId="1"> - <File Source="..\..\AddIns\DisplayBindings\Data\ICSharpCode.Data.SQLServer.dll" Name="ICSharpCode.Data.SQLServer.dll" Id="ICSharpCode.Data.SQLServer.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="SettingsEditor" Name="SettingsEditor"> - <Component Id="SettingsEditorFiles" Guid="4A12129A-6BB5-4CC7-A105-C1F6FDF345F2" DiskId="1"> - <File Id="SettingsEditor.dll" Name="SettingsEditor.dll" Source="..\..\AddIns\DisplayBindings\SettingsEditor\SettingsEditor.dll" KeyPath="yes" /> - <File Id="SettingsEditor.addin" Name="SettingsEditor.addin" Source="..\..\AddIns\DisplayBindings\SettingsEditor\SettingsEditor.addin" /> - </Component> - </Directory> - <Directory Id="Decompiler" Name="Decompiler"> - <Component Id="ILSpyAddInFiles" Guid="F1422563-5927-4D98-B4D4-33FE5576C665" DiskId="1"> - <File Id="ILSpyAddIn.dll" Name="ILSpyAddIn.dll" Source="..\..\AddIns\DisplayBindings\Decompiler\ILSpyAddIn.dll" KeyPath="yes" /> - <File Id="ILSpyAddIn.addin" Name="ILSpyAddIn.addin" Source="..\..\AddIns\DisplayBindings\Decompiler\ILSpyAddIn.addin" /> - <File Id="ICSharpCode.Decompiler.dll" Name="ICSharpCode.Decompiler.dll" Source="..\..\AddIns\DisplayBindings\Decompiler\ICSharpCode.Decompiler.dll" /> - </Component> - </Directory> - </Directory> - <Directory Id="DebuggerFolder" Name="Debugger"> - <Component Guid="27C66A5A-0149-45F4-B1AF-C320FE005E6B" Id="DebuggerAddInFiles" DiskId="1"> - <File Source="..\..\AddIns\Debugger\Debugger.AddIn.addin" Id="Debugger.AddIn.addin" Name="Debugger.AddIn.addin" /> - <File Source="..\..\AddIns\Debugger\Debugger.AddIn.dll" Id="Debugger.AddIn.dll" Name="Debugger.AddIn.dll" /> - <File Source="..\..\AddIns\Debugger\Debugger.Core.dll" Id="Debugger.Core.dll" Name="Debugger.Core.dll" /> - </Component> - </Directory> - <Directory Id="MiscAddInsFolder" Name="Misc"> - <Directory Id="AddInScoutFolder" Name="AddinScout"> - <Component Guid="815D3708-5A0A-4B8E-BB72-66DF8E851917" Id="AddInScoutFiles" DiskId="1"> - <File Source="..\..\AddIns\Misc\AddinScout\AddinScout.dll" Id="AddinScout.dll" Name="AddinScout.dll" Assembly=".net" AssemblyApplication="AddinScout.dll" AssemblyManifest="AddinScout.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Misc\AddinScout\AddInScout.addin" Id="AddInScout.addin" Name="AddInScout.addin" /> - </Component> - </Directory> - <Directory Id="FiletypeRegistererFolder" Name="FiletypeRegisterer"> - <Directory Id="FileTypesFolder" Name="filetypes"> - <Component Guid="389BF494-9AE6-476A-A0FE-39DB0CFE95D1" Id="FiletypeIcons" DiskId="1"> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\xml.ico" Name="xml.ico" Id="xml.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\addin.ico" Name="addin.ico" Id="addin.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\cmbx.ico" Name="cmbx.ico" Id="cmbx.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\cs.ico" Name="cs.ico" Id="cs.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\java.ico" Name="java.ico" Id="java.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\prjx.ico" Name="prjx.ico" Id="prjx.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\resx.ico" Name="resx.ico" Id="resx.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\vb.ico" Name="vb.ico" Id="vb.ico" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\filetypes\xfrm.ico" Name="xfrm.ico" Id="xfrm.ico" /> - </Component> - </Directory> - <Component Guid="6FF1EF46-B5FF-444D-879F-0E56640CABD7" Id="FiletypeRegistererFiles" DiskId="1"> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\ICSharpCode.FiletypeRegisterer.dll" Id="ICSharpCode.FiletypeRegisterer.dll" Name="ICSharpCode.FiletypeRegisterer.dll" Assembly=".net" AssemblyApplication="ICSharpCode.FiletypeRegisterer.dll" AssemblyManifest="ICSharpCode.FiletypeRegisterer.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Misc\FiletypeRegisterer\FiletypeRegisterer.addin" Id="FiletypeRegisterer.addin" Name="FiletypeRegisterer.addin" /> - </Component> - </Directory> - <Directory Id="HelpViewerFolder" Name="HelpViewer"> - <Component Guid="C854C30E-1765-4614-8248-F256C761CEE3" Id="HtmlHelp2Files" DiskId="1"> - <File Source="..\..\AddIns\Misc\HelpViewer\HelpViewer.addin" Id="HelpViewer.addin" Name="HelpViewer.addin" /> - <File Source="..\..\AddIns\Misc\HelpViewer\HelpViewer.dll" Id="HelpViewer.dll" Name="HelpViewer.dll" /> - </Component> - </Directory> - <Directory Id="RegExToolkitFolder" Name="RegExpTk"> - <Component Guid="B934ABC3-AD9B-4DC3-B0EE-1CA5AF2B8F82" Id="RegExToolkitFiles" DiskId="1"> - <File Source="..\..\AddIns\Misc\RegExpTk\RegExpTk.addin" Id="RegExpTk.addin" Name="RegExpTk.addin" /> - <File Source="..\..\AddIns\Misc\RegExpTk\RegExpTk.dll" Name="RegExpTk.dll" Id="RegExpTk.dll" Assembly=".net" AssemblyApplication="RegExpTk.dll" AssemblyManifest="RegExpTk.dll" KeyPath="yes" /> - </Component> - </Directory> - <!-- - <Directory Id="ResourceToolkitFolder" Name="ResourceToolkit"> - <Component Guid="E36C699F-353D-41CC-975B-E18BEB885BA0" Id="ResourceToolkitFiles" DiskId="1"> - <File Source="..\..\AddIns\Misc\ResourceToolkit\Hornung.ResourceToolkit.addin" Id="Hornung.ResourceToolkit.addin" Name="Hornung.ResourceToolkit.addin" /> - <File Source="..\..\AddIns\Misc\ResourceToolkit\Hornung.ResourceToolkit.dll" Id="Hornung.ResourceToolkit.dll" Name="Hornung.ResourceToolkit.dll" Assembly=".net" AssemblyApplication="Hornung.ResourceToolkit.dll" AssemblyManifest="Hornung.ResourceToolkit.dll" KeyPath="yes" /> - </Component> - </Directory>--> - <Directory Id="StartPageAddInFolder" Name="StartPage"> - <Component Guid="220967E5-D5AA-4207-9757-79599222D5CF" Id="StartPageAddInFiles" DiskId="1"> - <File Source="..\..\AddIns\Misc\StartPage\StartPage.dll" Id="StartPage.dll" Name="StartPage.dll" Assembly=".net" AssemblyApplication="StartPage.dll" AssemblyManifest="StartPage.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Misc\StartPage\StartPage.addin" Id="StartPage.addin" Name="StartPage.addin" /> - </Component> - </Directory> - <Directory Id="SearchAndReplace" Name="SearchAndReplace"> - <Component Guid="A76D4EB6-0EBB-49D7-9528-2FA87C983703" Id="SearchAndReplaceFiles" DiskId="1"> - <File Source="..\..\AddIns\Misc\SearchAndReplace\SearchAndReplace.addin" Id="SearchAndReplace.addin" Name="SearchAndReplace.addin" /> - <File Source="..\..\AddIns\Misc\SearchAndReplace\SearchAndReplace.dll" Id="SearchAndReplace.dll" Name="SearchAndReplace.dll" /> - </Component> - </Directory> - <Directory Id="Profiler" Name="Profiler"> - <Component Guid="C46A4B2C-D5DE-4548-B4A9-4B0AB8C105F3" Id="Hook32Dll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\Hook32.dll" Name="Hook32.dll" Id="Hook32.dll" KeyPath="yes" /> - </Component> - <Component Guid="AC57D4D8-C5CE-4905-BB9E-D7DD2E1F218B" Id="Hook64Dll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\Hook64.dll" Name="Hook64.dll" Id="Hook64.dll" KeyPath="yes" /> - </Component> - <Component Guid="FFFF6CFB-4C20-4934-85CA-51EE4BBAB219" Id="ICSharpCodeProfilerAddInAddin" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.AddIn.addin" Name="ICSharpCode.Profiler.AddIn.addin" Id="ICSharpCode.Profiler.AddIn.addin" KeyPath="yes" /> - </Component> - <Component Guid="39658202-7209-4C48-BD2F-426B5115C640" Id="ICSharpCodeProfilerAddInDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.AddIn.dll" Name="ICSharpCode.Profiler.AddIn.dll" Id="ICSharpCode.Profiler.AddIn.dll" KeyPath="yes" /> - </Component> - <Component Guid="A4130504-0AB7-4ACA-BC43-61BBD2D88415" Id="ICSharpCodeProfilerControllerDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.Controller.dll" Name="ICSharpCode.Profiler.Controller.dll" Id="ICSharpCode.Profiler.Controller.dll" KeyPath="yes" /> - </Component> - <Component Guid="AF6BA5E6-0EF1-40D4-B78A-D97100F57E0F" Id="ICSharpCodeProfilerControlsDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\ICSharpCode.Profiler.Controls.dll" Name="ICSharpCode.Profiler.Controls.dll" Id="ICSharpCode.Profiler.Controls.dll" KeyPath="yes" /> - </Component> - <Component Guid="30373CF2-3D49-41E1-987F-5C870531FB75" Id="SystemDataSQLiteDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\System.Data.SQLite.dll" Name="System.Data.SQLite.dll" Id="Profiler.System.Data.SQLite.dll" KeyPath="yes" /> - </Component> - <Component Guid="E1C27BD1-4FEA-4CAA-884F-1FD93D861426" Id="IQToolkitDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\Profiler\IQToolkit.dll" Name="IQToolkit.dll" Id="IQToolkit.dll" KeyPath="yes" /> - </Component> - </Directory> - <Directory Id="UsageDataCollector" Name="UsageDataCollector"> - <Component Guid="952BD2C8-F477-4C87-A869-80E4B5E955D6" Id="UDCSystemDataSQLiteDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\UsageDataCollector\System.Data.SQLite.dll" Name="System.Data.SQLite.dll" Id="UDC.System.Data.SQLite.dll" KeyPath="yes" /> - </Component> - <Component Guid="F0D830A5-C1AE-43E4-B74C-CF78B7E8A849" Id="UsageDataCollectorAddin" DiskId="1"> - <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.addin" Name="UsageDataCollector.addin" Id="UsageDataCollector.addin" /> - <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.AddIn.dll" Name="UsageDataCollector.AddIn.dll" Id="UsageDataCollector.AddIn.dll" KeyPath="yes" /> - </Component> - <Component Guid="BDFB1DDB-E4AD-4D20-B7C1-21EDDEF33943" Id="UsageDataCollectorDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.dll" Name="UsageDataCollector.dll" Id="UsageDataCollector.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\Misc\UsageDataCollector\UsageDataCollector.xml" Name="UsageDataCollector.xml" Id="UsageDataCollector.xml" /> - </Component> - </Directory> -<!-- <Directory Id="SharpDevelopReports" Name="SharpDevelopReports"> - <Component Guid="9D0B24E0-6BE3-4E0A-AE50-DFF55BAE388F" Id="SharpDevelopReportsEmptyReportFileTemplate" DiskId="1"> - <File Source="..\..\AddIns\Misc\SharpDevelopReports\EmptyReport.xft" Name="EmptyReport.xft" Id="SharpDevelopReportsEmptyReport.xft" KeyPath="yes" /> - </Component> - <Component Guid="70F6CB6E-5776-4157-BABB-1D01960CFD42" Id="ICSharpCodeReportDesignerAddin" DiskId="1"> - <File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.ReportDesigner.addin" Name="ICSharpCode.ReportDesigner.addin" Id="ICSharpCode.ReportDesigner.addin" KeyPath="yes" /> - </Component> - <Component Guid="368CD4A5-70EA-4374-AF4E-A4328DE66680" Id="ICSharpCodeReportsAddinDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.Reports.Addin.dll" Name="ICSharpCode.Reports.Addin.dll" Id="ICSharpCode.Reports.Addin.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.Reports.Addin.dll" AssemblyManifest="ICSharpCode.Reports.Addin.dll" /> - </Component> - <Component Guid="0836040D-7E4A-42CA-A291-BE8AAB207D29" Id="ICSharpCodeReportsCoreDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\SharpDevelopReports\ICSharpCode.Reports.Core.dll" Name="ICSharpCode.Reports.Core.dll" Id="ICSharpCode.Reports.Core.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.Reports.Core.dll" AssemblyManifest="ICSharpCode.Reports.Core.dll" /> - </Component> - <Component Guid="DBF1DA4F-19BA-46AF-86A4-B3228424F219" Id="IronyDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\SharpDevelopReports\Irony.dll" Name="Irony.dll" Id="Irony.dll" KeyPath="yes" /> - </Component> - <Component Guid="A105D4E4-2AF4-43BE-AA71-15F14DA4163B" Id="ITextSharpDll" DiskId="1"> - <File Source="..\..\AddIns\Misc\SharpDevelopReports\itextsharp.dll" Name="itextsharp.dll" Id="itextsharp.dll" KeyPath="yes" /> - </Component> - </Directory>--> - <Directory Id="PackageManagement" Name="PackageManagement"> - <Component Id="NuGetCoreDll" Guid="AA347D26-712F-4BF7-BB74-517F6BFC563F" DiskId="1"> - <File Id="NuGet.Core.dll" Name="NuGet.Core.dll" Source="..\..\AddIns\Misc\PackageManagement\NuGet.Core.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="NuGet.Core.dll" AssemblyManifest="NuGet.Core.dll" /> - </Component> - <Component Id="NuGetLicenseTxt" Guid="9927896C-A240-4A12-A3D7-EF67E90E87B7" DiskId="1"> - <File Id="NuGetLicense.txt" Name="NuGet-LICENSE.txt" Source="..\..\AddIns\Misc\PackageManagement\NuGet-LICENSE.txt" KeyPath="yes" /> - </Component> - <Component Id="PackageManagementAddin" Guid="653F3DA0-90AD-40E6-86C7-364DCD63C798" DiskId="1"> - <File Id="PackageManagement.addin" Name="PackageManagement.addin" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.addin" KeyPath="yes" /> - </Component> - <Component Id="PackageManagementDll" Guid="24C9BEEB-0B51-42F9-A3FA-C4830B28BABD" DiskId="1"> - <File Id="PackageManagement.dll" Name="PackageManagement.dll" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.dll" AssemblyManifest="PackageManagement.dll" /> - </Component> - <Component Id="AboutNuGetCmdletsHelpTxt" Guid="9A761C90-C10B-4E69-A0C3-6E417CBBAE94" DiskId="1"> - <File Id="about_NuGet.Cmdlets.help.txt" Name="about_NuGet.Cmdlets.help.txt" Source="..\..\AddIns\Misc\PackageManagement\about_NuGet.Cmdlets.help.txt" KeyPath="yes" /> - </Component> - <Component Id="PackageManagementCmdletsDll" Guid="BAFE4038-7ADC-4E67-A73E-BA335860168E" DiskId="1"> - <File Id="PackageManagement.Cmdlets.dll" Name="PackageManagement.Cmdlets.dll" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.Cmdlets.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.Cmdlets.dll" AssemblyManifest="PackageManagement.Cmdlets.dll" /> - </Component> - <Component Id="PackageManagementCmdletsDllHelpXml" Guid="636FB699-BD74-48E6-8272-38CBA5E64852" DiskId="1"> - <File Id="PackageManagement.Cmdlets.dll_Help.xml" Name="PackageManagement.Cmdlets.dll-Help.xml" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.Cmdlets.dll-Help.xml" KeyPath="yes" /> - </Component> - <Directory Id="PackageManagementScriptsFolder" Name="Scripts"> - <Component Id="PackageFormatPs1Xml" Guid="1C940A6A-5AF2-4E83-84AD-78DB38F763AC" DiskId="1"> - <File Id="Package.Format.ps1xml" Name="Package.Format.ps1xml" Source="..\..\AddIns\Misc\PackageManagement\Scripts\Package.Format.ps1xml" KeyPath="yes" /> - </Component> - </Directory> - <Component Id="PackageManagementPowerShellDll" Guid="78A57EFC-EB7D-4982-A6DA-42F061BCA2D2" DiskId="1"> - <File Id="PackageManagement.PowerShell.dll" Name="PackageManagement.PowerShell.dll" Source="..\..\AddIns\Misc\PackageManagement\PackageManagement.PowerShell.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.PowerShell.dll" AssemblyManifest="PackageManagement.PowerShell.dll" /> - </Component> - <Component Id="NuGetConsoleTypesDll" Guid="7386637C-A6C6-4AD4-8EA3-C5E87AA3F552" DiskId="1"> - <File Id="NuGet.Console.Types.dll" Name="NuGet.Console.Types.dll" Source="..\..\AddIns\Misc\PackageManagement\NuGet.Console.Types.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="NuGet.Console.Types.dll" AssemblyManifest="NuGet.Console.Types.dll" /> - </Component> - <!--<Component Id="PackageManagementICSharpCodeSharpDevelopDomDll" Guid="70460742-D237-4742-B563-7127376C56CB" DiskId="1"> - <File Id="PackageManagement.ICSharpCode.SharpDevelop.Dom.dll" Name="ICSharpCode.SharpDevelop.Dom.dll" Source="..\..\AddIns\Misc\PackageManagement\ICSharpCode.SharpDevelop.Dom.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="PackageManagement.ICSharpCode.SharpDevelop.Dom.dll" AssemblyManifest="PackageManagement.ICSharpCode.SharpDevelop.Dom.dll" /> - </Component>--> - <Component Id="MicrosoftWebXmlTransformDll" Guid="0A82C51B-E2D1-4817-8704-2CB390B4E833" DiskId="1"> - <File Id="Microsoft.Web.XmlTransform.dll" Name="Microsoft.Web.XmlTransform.dll" Source="..\..\AddIns\Misc\PackageManagement\Microsoft.Web.XmlTransform.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Microsoft.Web.XmlTransform.dll" AssemblyManifest="Microsoft.Web.XmlTransform.dll" /> - </Component> - <Component Id="NuGetExe" Guid="47FD372D-7F53-4466-B648-F674C64ED98B" DiskId="1"> - <File Id="NuGet.exe" Name="NuGet.exe" Source="..\..\AddIns\Misc\PackageManagement\NuGet.exe" KeyPath="yes" Assembly=".net" AssemblyApplication="NuGet.exe" AssemblyManifest="NuGet.exe" /> - </Component> - </Directory> - <Directory Id="TextTemplating" Name="TextTemplating"> - <Component Id="MonoTextTemplatingDll" Guid="07BFBED7-FC7B-4CF3-BD00-DCA8E8E7C17B" DiskId="1"> - <File Id="Mono.TextTemplating.dll" Name="Mono.TextTemplating.dll" Source="..\..\AddIns\Misc\TextTemplating\Mono.TextTemplating.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="Mono.TextTemplating.dll" AssemblyManifest="Mono.TextTemplating.dll" /> - </Component> - <Component Id="TextTemplatingAddin" Guid="4641009D-3B33-4D5D-8910-48543211BAD1" DiskId="1"> - <File Id="TextTemplating.addin" Name="TextTemplating.addin" Source="..\..\AddIns\Misc\TextTemplating\TextTemplating.addin" KeyPath="yes" /> - </Component> - <Component Id="TextTemplatingDll" Guid="EB7774C9-9C60-46F5-95C1-17D86E743F83" DiskId="1"> - <File Id="TextTemplating.dll" Name="TextTemplating.dll" Source="..\..\AddIns\Misc\TextTemplating\TextTemplating.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="TextTemplating.dll" AssemblyManifest="TextTemplating.dll" /> - </Component> - <Directory Id="TextTemplatingTemplates" Name="Templates"> - <Component Id="CSharpTextTemplateFileTemplate" Guid="D271B972-2CBB-4615-9D35-23F75969CA9B" DiskId="1"> - <File Id="CSharp.TextTemplate.xft" Name="CSharp.TextTemplate.xft" Source="..\..\AddIns\Misc\TextTemplating\Templates\CSharp.TextTemplate.xft" KeyPath="yes" /> - </Component> - <Component Id="VBTextTemplateFileTemplate" Guid="21E9FFAB-491C-48A4-BD3D-41E596C50D66" DiskId="1"> - <File Id="VB.TextTemplate.xft" Name="VB.TextTemplate.xft" Source="..\..\AddIns\Misc\TextTemplating\Templates\VB.TextTemplate.xft" KeyPath="yes" /> - </Component> - </Directory> - </Directory> - <Directory Id="AddInManager2" Name="AddInManager2"> - <Component Id="AddInManager2Addin" Guid="EF503F73-B0F2-44FB-8404-97E8D143C7A6" DiskId="1"> - <File Id="AddInManager2.addin" Name="AddInManager2.addin" Source="..\..\AddIns\Misc\AddInManager2\AddInManager2.addin" KeyPath="yes" /> - </Component> - <Component Id="ICSharpCodeAddInManager2Dll" Guid="B7F54D98-D67D-483A-A65C-EBDFC17E4E04" DiskId="1"> - <File Id="ICSharpCode.AddInManager2.dll" Name="ICSharpCode.AddInManager2.dll" Source="..\..\AddIns\Misc\AddInManager2\ICSharpCode.AddInManager2.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="ICSharpCode.AddInManager2.dll" AssemblyManifest="ICSharpCode.AddInManager2.dll" /> - </Component> - <Component Id="AddInManager2ICSharpCodeSharpZipLibDll" Guid="328B9589-3120-48DC-8774-D99F293EE3E8" DiskId="1"> - <File Id="AddInManager2.ICSharpCode.SharpZipLib.dll" Name="ICSharpCode.SharpZipLib.dll" Source="..\..\AddIns\Misc\AddInManager2\ICSharpCode.SharpZipLib.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="AddInManager2.ICSharpCode.SharpZipLib.dll" AssemblyManifest="AddInManager2.ICSharpCode.SharpZipLib.dll" /> - </Component> - <Component Id="AddInManager2NuGetCoreDll" Guid="29F6AA62-469E-429D-B8F9-2E087093A1E9" DiskId="1"> - <File Id="AddInManager2.NuGet.Core.dll" Name="NuGet.Core.dll" Source="..\..\AddIns\Misc\AddInManager2\NuGet.Core.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="AddInManager2.NuGet.Core.dll" AssemblyManifest="AddInManager2.NuGet.Core.dll" /> - </Component> - <Component Id="AddInManager2MSWebXmlTransformDll" Guid="77C7E729-DB5A-4754-BF30-706760D3CE8C" DiskId="1"> - <File Id="AddInManager2.Microsoft.Web.XmlTransform.dll" Name="Microsoft.Web.XmlTransform.dll" Source="..\..\AddIns\Misc\AddInManager2\Microsoft.Web.XmlTransform.dll" KeyPath="yes" Assembly=".net" AssemblyApplication="AddInManager2.Microsoft.Web.XmlTransform.dll" AssemblyManifest="AddInManager2.Microsoft.Web.XmlTransform.dll" /> - </Component> - </Directory> - </Directory> - <Directory Id="VersionControlAddInsFolder" Name="VersionControl"> - <Directory Id="SubversionAddInFolder" Name="SubversionAddIn"> - <Component Guid="C9B1D523-5674-4398-9073-20F57B45DD46" Id="SubversionAddInDll" DiskId="1"> - <File Source="..\..\AddIns\VersionControl\SubversionAddin\SubversionAddIn.dll" Id="SubversionAddIn.dll" Name="SubversionAddIn.dll" Assembly=".net" AssemblyApplication="SubversionAddIn.dll" AssemblyManifest="SubversionAddIn.dll" KeyPath="yes" /> - <File Source="..\..\AddIns\VersionControl\SubversionAddin\ICSharpCode.Svn.addin" Id="ICSharpCode.Svn.addin" Name="ICSharpCode.Svn.addin" /> - <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpSvn.dll" Name="SharpSvn.dll" Id="SharpSvn.dll" /> - <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpSvn.UI.dll" Name="SharpSvn.UI.dll" Id="SharpSvn.UI.dll" /> - <File Source="..\..\AddIns\VersionControl\SubversionAddin\SharpPlink-Win32.svnExe" Name="SharpPlink-Win32.svnExe" Id="SharpPlink_Win32.svnExe" /> - </Component> - </Directory> - <Component Id="GitAddInDll" Guid="4AB2E967-7267-42F7-AED1-AB64809F0BC1" DiskId="1"> - <File Id="GitAddIn.dll" Name="GitAddIn.dll" Source="..\..\AddIns\VersionControl\GitAddIn.dll" KeyPath="yes" /> - <File Id="GitAddIn.addin" Name="GitAddIn.addin" Source="..\..\AddIns\VersionControl\GitAddIn.addin" /> - </Component> - </Directory> - </Directory> - <Component Guid="542E5AE1-286C-4CE6-8800-F3AFBB24531D" Id="SharpDevelopWebsiteShortcut" DiskId="1"> - <!-- - The choice here is to either useW the IniFile element to - generate the two website shortcuts or create a - SharpDevelop.url file on disk and use a File element and - link to the file instead. We will use a file otherwise an - upgrade will not remove the existing website shortcut. - --> - <File Id="SharpDevelop.url" KeyPath="yes" Name="SharpDevelop.url" Source="Files\SharpDevelop.url" /> - <!-- - ICE18 - Force the empty folder to be created. Even though it - has sub folders the validator flags this as an error. - - http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp - --> - <CreateFolder /> - </Component> - <Component Id="SharpDevelopAppPathRegistrySetting" Guid="E812C3C9-1753-4535-80B9-BD8BCE7DB1A5"> - <!-- - App Path registry setting lives in HKLM so only add it if the - user has admin rights. - --> - <Condition>Privileged</Condition> - <RegistryValue Id="SharpDevelopAppPathRegistryKey" Key="Software\Microsoft\Windows\CurrentVersion\App Paths\SharpDevelop.exe" Root="HKLM" Value="[!SharpDevelop.exe]" Type="string" Action="write" /> - </Component> - <!-- - Dummy components that are empty. These are used so - the feature tree does not show the Network installation - as an option. - --> - <Component Id="DummyCompleteFeatureComponent" Guid="22AB4C49-89FD-413F-8A1D-456AFB1AD611"> - <!-- - Fix ICE18 error. The validator thinks that the install folder - could be empty so we have to use CreateFolder in this component. - - http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp - --> - <CreateFolder /> - </Component> - <Component Id="DummyFileAssocationFeatureComponent" Guid="F0390EC4-6B66-4823-B4F4-7F29E3D6AB54"> - <!-- - Fix ICE18 error. The validator thinks that the install folder - could be empty so we have to use CreateFolder in this component. - - http://msdn.microsoft.com/library/en-us/msi/setup/ice18.asp - --> - <CreateFolder /> - </Component> - </Directory> - </Directory> - </Directory> - <!-- SharpDevelop Start menu folder --> - <Directory Id="ProgramMenuFolder" Name="Programs"> - <Component Id="SharpDevelopProgramMenuItems" Guid="0DFD59B1-7D98-48B2-9369-E6EA8B71B4B6"> - <!-- - 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\SharpDevelop\$(var.PRODUCTMAJORVERSION)" Name="ProgramFilesShortcut" Value="1" /> - <Shortcut Name="SharpDevelop $(var.PRODUCTDISPLAYVERSION)" Target="[!SharpDevelop.exe]" Id="SharpDevelopExeStartMenuShortcut" WorkingDirectory="BinFolder" Icon="SharpDevelopIcon.exe" Directory="ProgramMenuFolder" /> - </Component> - </Directory> - <!-- Desktop shortcuts --> - <Directory Id="DesktopFolder" Name="Desktop"> - <Component Id="DesktopFolderItems" Guid="FB3DF01F-7F7F-47C3-AF61-C998DDFAE55D"> - <!-- - 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\SharpDevelop\$(var.PRODUCTMAJORVERSION)" Name="DesktopShortcut" Value="1" /> - <Shortcut Id="SharpDevelopExeDesktopShortcut" Directory="DesktopFolder" Target="[!SharpDevelop.exe]" Name="SharpDevelop $(var.PRODUCTDISPLAYVERSION)" Icon="SharpDevelopIcon.exe" WorkingDirectory="BinFolder" /> - </Component> - </Directory> - </DirectoryRef> - </Fragment> -</Wix> \ No newline at end of file diff --git a/src/Setup/Setup.wxs b/src/Setup/Setup.wxs deleted file mode 100644 index ac1efe1587..0000000000 --- a/src/Setup/Setup.wxs +++ /dev/null @@ -1,727 +0,0 @@ -<!-- - Installer for SharpDevelop. ---> -<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> - <!-- - Windows Installer only recognises 3 digits for the product version (Major.Minor.Build) - so the third digit must be the revision number. - --> - - <!-- PRODUCTMAJORVERSION is major.minor (e.g. 4.1), retrieved from GlobalAssemblyInfo.template --> - <!-- PRODUCTBUILDVERSION is the revision number (e.g. 6963), calculated from git --> - <!-- PRODUCTDISPLAYVERSION is a string like "4.1 Beta 1" (version name retrieved from GlobalAssemblyInfo.template) --> - - <Product Id="*" - Name="SharpDevelop $(var.PRODUCTDISPLAYVERSION)" - Manufacturer="ic#code" - Language="1033" - Codepage="1252" - UpgradeCode="F094DA91-D43E-4451-A1CB-645FE9C7A843" - Version="$(var.PRODUCTMAJORVERSION).$(var.PRODUCTBUILDVERSION)"> - - <!-- When a new major SharpDevelop version should be allowed to be installed in parallel to old versions, - we need a new upgrade code (2 occurrences!), and the "Minimum Version" for upgrades needs to be adjusted. - --> - - <Package Description="SharpDevelop $(var.PRODUCTDISPLAYVERSION)" - InstallerVersion="300" - Compressed="yes"/> - - <!-- Upgrade information --> - <Upgrade Id="F094DA91-D43E-4451-A1CB-645FE9C7A843"> - <!-- The UpgradeCode must be changed to allow two versions of SharpDevelop to be installed side-by-side --> - - <!-- Checks for older versions --> - <UpgradeVersion Minimum="5.0.0" - IncludeMinimum="yes" - Maximum="$(var.PRODUCTMAJORVERSION).$(var.PRODUCTBUILDVERSION)" - IncludeMaximum="no" - Property="PREVIOUSVERSIONFOUND"/> - <!-- Checks for newer versions --> - <UpgradeVersion OnlyDetect="yes" - Property="NEWERVERSIONFOUND" - Minimum="$(var.PRODUCTMAJORVERSION).$(var.PRODUCTBUILDVERSION)" - IncludeMinimum="no"/> - </Upgrade> - - <!-- - Conditions to be satisfied before the installer begins. - Note that we are using "Installed OR" in the conditions so - so they never block the user from repairing, patching, or - uninstalling the package after it has been installed. - - For example the user could do something odd like uninstall .NET - and then run the msi to uninstall SharpDevelop. Without the - "Installed OR" this would not be allowed. - --> - - <!-- SharpDevelop 5 doesn't support Win XP and below. --> - <Condition Message="SharpDevelop $(var.PRODUCTDISPLAYVERSION) can only be installed on Windows Vista and higher."> - Installed OR (VersionNT >= 600) - </Condition> - - <!-- - Check for .NET 4.5 RTM - --> - <!-- we could check NETFRAMEWORK45 optionally if we want to force the user to install a specific version --> - <Property Id="NETFRAMEWORK45" Secure="yes"> - <RegistrySearch Id="NetFramework45" Root="HKLM" Key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full" Name="Release" Type="raw" /> - </Property> - <Condition Message="This setup requires the .NET Framework 4.5 to be installed."> - Installed OR NETFRAMEWORK45 - </Condition> - - <!-- - Check for C++ 2008 Runtime (we accept any 2008 runtime version). - We only need the VC9 CRT, but unfortunately I couldn't find any way to detect if that is installed. - So instead, we conservatively check that the whole C++ runtime is installed. - However, we know that .NET 3.5 installs the C++ runtime parts we need (.NET 4.0 doesn't), so we'll check for - VCPP2008RUNTIME OR NETFRAMEWORK35. - --> - <Property Id="VCPP2008RUNTIME" Secure="yes"> - <RegistrySearch Id="VCpp2008Runtime" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VC\Servicing\9.0" Name="SP" Type="raw" /> - </Property> - <PropertyRef Id="NETFRAMEWORK35"/> - <Condition Message="This setup requires the Microsoft Visual C++ 2008 SP1 Redistributable Package to be installed."> - Installed OR (VCPP2008RUNTIME <> "") OR NETFRAMEWORK35 - </Condition> - - <!-- - Check the user has elevated permissions. We need admin rights to NGen - SharpDevelop.exe and to register the Help collection. - - The old Setup.exe displays a RunAs dialog only because when it is named - "Setup.exe". So do we display an error message or let the installation - fail? The failure message is obscure so a message is before launching - is probably better. - --> - <!-- Not used since the install will work without admin rights. - <Condition Message="Administrator rights are required to install SharpDevelop."> - Privileged - </Condition> --> - - <!-- - Install for all users. - - Using ALLUSERS=2 means SharpDevelop can be installed by a non-admin. - In this case it will be a per-user installation installed into the - user's personal profile. - - (The installer will be adding assemblies to the GAC and using NGen - on SharpDevelop.exe if and only if the user has admin rights) - - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/allusers.asp - --> - <Property Id="ALLUSERS">2</Property> - - <!-- - Support entries shown when clicking "Click here for support information" - in Control Panel's Add/Remove Programs - - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/configuration_properties.asp - --> - <Property Id="ARPCONTACT">http://icsharpcode.net/OpenSource/SD/ContactUs.asp</Property> - <Property Id="ARPHELPLINK">http://community.sharpdevelop.net/forums/</Property> - <Property Id="ARPURLINFOABOUT">http://icsharpcode.net/OpenSource/SD/</Property> - <Property Id="ARPURLUPDATEINFO">http://icsharpcode.net/OpenSource/SD/Download/</Property> - - <!-- Suppress the Modify button in the Control Panel's Add/Remove Programs --> - <!-- - Temporarily disabled whilst using the WixUI library - <Property Id="ARPNOMODIFY">1</Property> - --> - - <!-- Puts SharpDevelop icon in Control Panel's Add/Remove Programs --> - <Property Id="ARPPRODUCTICON">SharpDevelopIcon.exe</Property> - <Icon Id="SharpDevelopIcon.exe" SourceFile="..\Main\SharpDevelop\Resources\SharpDevelop.ico"/> - - <!-- - Source media for the installation. - Specifies a single cab file to be embedded in the installer's .msi. - --> - <Media Id="1" Cabinet="contents.cab" EmbedCab="yes" CompressionLevel="high"/> - - <!-- Installation directory and files are defined in Files.wxs --> - <Directory Id="TARGETDIR" Name="SourceDir"/> - - <!-- - Currently just one core feature to install everything. - Source code will become a separate feature. Perhaps all the add-ins too could - each be a feature if the user wants to heavily customise the installation. - --> - <Feature Id="Complete" - Title="SharpDevelop $(var.PRODUCTMAJORVERSION)" - Description="Installs SharpDevelop and registers file associations" - Level="1" - ConfigurableDirectory="INSTALLDIR" - Absent="disallow" - AllowAdvertise="no" - InstallDefault="local" - Display="expand"> - <!-- - We put a reference to a dummy component which contains no files - so we can get rid of the Network install options from the drop - down menu for this feature. Seems to be a bug in Windows Installer. - --> - <ComponentRef Id="DummyCompleteFeatureComponent"/> - <!-- - The SharpDevelop application. This may at some point in the distant - future be further subdivided into addin features, but doing this - will mean a new ProductCode will need to be generated. - --> - <Feature Id="SharpDevelop" - Title="SharpDevelop" - Description="Installs SharpDevelop" - Level="1" - InstallDefault="local" - AllowAdvertise="no" - Absent="disallow"> - <ComponentRef Id="SharpDevelopExe"/> - <ComponentRef Id="SharpDevelopExeFiles"/> - <ComponentRef Id="SharpDevelopDocFiles"/> - <ComponentRef Id="DependenciesHtml"/> - <ComponentRef Id="ICSharpCodeBuildTasksDll"/> - <ComponentRef Id="BuildTasksTargetFiles"/> - <ComponentRef Id="ICSharpCodeCoreDll"/> - <ComponentRef Id="ICSharpCodeCoreWinFormsDll"/> - <ComponentRef Id="ICSharpCodeNRefactoryDll"/> - <ComponentRef Id="ICSharpCodeNRefactoryCSharpDll"/> - <ComponentRef Id="ICSharpCodeNRefactoryXmlDll"/> - <ComponentRef Id="ICSharpCodeNRefactoryCecilDll"/> - <ComponentRef Id="ICSharpCodeNRefactoryCSharpRefactoringDll"/> - <ComponentRef Id="ICSharpCodeSharpDevelopDll"/> - <ComponentRef Id="ICSharpCodeSharpDevelopWidgets"/> - <ComponentRef Id="ICSharpCodeAvalonEditDll"/> - <ComponentRef Id="ICSharpCodeTreeViewDll"/> - <ComponentRef Id="ICSharpCodeSharpDevelopBuildWorker35Exe"/> - <ComponentRef Id="ICSharpCodeSharpDevelopBuildWorker40Exe"/> - <ComponentRef Id="log4netDll"/> - <ComponentRef Id="GraphSharpDll"/> - <ComponentRef Id="GraphSharpControlsDll"/> - <ComponentRef Id="QuickGraphDll"/> - <ComponentRef Id="GraphSharpContractsDll"/> - <ComponentRef Id="MicrosoftContractsDll"/> - <ComponentRef Id="WPFExtensionsDll"/> - <ComponentRef Id="MonoCecilDll"/> - <ComponentRef Id="AvalonDockDll"/> - <ComponentRef Id="ICSharpCodeCorePresentationDll"/> - <ComponentRef Id="SharpDevelopProgramMenuItems"/> - <ComponentRef Id="DesktopFolderItems"/> - - <ComponentRef Id="WixDIfxAppSchema"/> - <ComponentRef Id="WixIisSchema"/> - <ComponentRef Id="WixMSMQSchema"/> - <ComponentRef Id="WixNetFxSchema"/> - <ComponentRef Id="WixPSSchema"/> - <ComponentRef Id="WixSqlSchema"/> - <ComponentRef Id="WixUtilSchema"/> - <ComponentRef Id="WixVSSchema"/> - <ComponentRef Id="WixFirewallSchema"/> - <ComponentRef Id="WixGamingSchema"/> - <ComponentRef Id="EmptyWixFileTemplate"/> - <ComponentRef Id="WixDefaultLicenseRtf"/> - <ComponentRef Id="EmptyWixProjectTemplate"/> - <ComponentRef Id="EmptyWixDialogTemplate"/> - <ComponentRef Id="WixDialogTemplate"/> - - <ComponentRef Id="NUnitUtilDll"/> - <ComponentRef Id="NUnitConsoleFiles"/> - <ComponentRef Id="NUnitConsoleX86Files"/> - <ComponentRef Id="NUnitConsoleDotnet2Files"/> - <ComponentRef Id="NUnitConsoleDotnet2X86Files"/> - <ComponentRef Id="NUnitCoreDll"/> - <ComponentRef Id="NUnitFrameworkDll"/> - <ComponentRef Id="NUnitConsoleRunnerDll"/> - <ComponentRef Id="NUnitCoreInterfacesDll"/> - <ComponentRef Id="ConversionStyleSheetFiles"/> - <ComponentRef Id="TextLibOptionsFiles"/> - <ComponentRef Id="OptionsFiles"/> - <ComponentRef Id="InstallerBitmapFiles"/> - <ComponentRef Id="LanguageBitmapFiles"/> - <ComponentRef Id="LayoutFiles"/> - <ComponentRef Id="StringResourceFiles"/> - <ComponentRef Id="SchemaFiles"/> - <ComponentRef Id="CSharpFileTemplates"/> - <ComponentRef Id="CSharpRecentFilesCollectionTemplate"/> - <ComponentRef Id="CSharpRecentFilesCollectionTemplateRecentFileElementClass"/> - <ComponentRef Id="CSharpRecentFilesCollectionTemplateRecentFilesCollectionClass"/> - <ComponentRef Id="EmptyCSharpMvc3WebProjectTemplate"/> - <ComponentRef Id="CSharpMvc3WebProjectTemplate"/> - <ComponentRef Id="EmptyCSharpMvc4WebProjectTemplate"/> - <ComponentRef Id="CSharpMvc4WebProjectTemplate"/> - <ComponentRef Id="VBFileTemplates"/> - <ComponentRef Id="EmptyVBMvc3WebProjectTemplate"/> - <ComponentRef Id="VBMvc3WebProjectTemplate"/> - <ComponentRef Id="EmptyVBMvc4WebProjectTemplate"/> - <ComponentRef Id="VBMvc4WebProjectTemplate"/> - <ComponentRef Id="CSharpMvcControllerFileTemplate"/> - <ComponentRef Id="CSharpMvcViewPageFileTemplate"/> - <ComponentRef Id="CSharpMvcViewContentPageFileTemplate"/> - <ComponentRef Id="CSharpMvcViewMasterPageFileTemplate"/> - <ComponentRef Id="CSharpMvcViewUserControlFileTemplate"/> - <ComponentRef Id="VBMvcControllerFileTemplate"/> - <ComponentRef Id="VBMvcViewPageFileTemplate"/> - <ComponentRef Id="VBMvcViewContentPageFileTemplate"/> - <ComponentRef Id="VBMvcViewMasterPageFileTemplate"/> - <ComponentRef Id="VBMvcViewUserControlFileTemplate"/> - - <ComponentRef Id="CSharpWcfServiceProjectTemplate"/> - <ComponentRef Id="CSharpWcfServiceFileTemplate"/> - <ComponentRef Id="VBWcfServiceProjectTemplate"/> - <ComponentRef Id="VBWcfServiceFileTemplate"/> - - <ComponentRef Id="CSharpWcfRestServiceProjectTemplate"/> - <ComponentRef Id="CSharpWcfRestServiceFileTemplate"/> - <ComponentRef Id="VBWcfRestServiceProjectTemplate"/> - <ComponentRef Id="VBWcfRestServiceFileTemplate"/> - - <ComponentRef Id="EmptyHTMLFileTemplate"/> - <ComponentRef Id="EmptyStyleSheetFileTemplate"/> - <ComponentRef Id="EmptyJavaScriptFileTemplate"/> - <ComponentRef Id="EmptyMsBuildFileTemplate"/> - <ComponentRef Id="EmptyResourceFileTemplate"/> - <ComponentRef Id="EmptyTextFileTemplate"/> - <ComponentRef Id="EmptyXMLFileTemplate"/> - <ComponentRef Id="SharpDevelopFileTemplates"/> - <ComponentRef Id="CSharpProjectTemplates"/> - <ComponentRef Id="CSharpWebServiceProjectTemplate"/> - <ComponentRef Id="CSharpNotifyIconProjectTemplate"/> - <ComponentRef Id="CSharpStructTemplate"/> - <ComponentRef Id="CSharpConfigurationFileTemplates"/> - <ComponentRef Id="MiscProjectTemplates"/> - <ComponentRef Id="VBProjectTemplates"/> - <ComponentRef Id="ExampleProjectTemplate"/> - <ComponentRef Id="ICSharpCode.SharpDevelop.addin"/> - <ComponentRef Id="CSharpBindingFiles"/> - <ComponentRef Id="VBBindingFiles"/> - <ComponentRef Id="WixBindingFiles"/> - <ComponentRef Id="WixUIMondoProjectTemplate"/> - <ComponentRef Id="WixUIMinimalProjectTemplate"/> - <ComponentRef Id="WixUIInstallDirProjectTemplate"/> - <ComponentRef Id="WixUIFeatureTreeProjectTemplate"/> - <ComponentRef Id="FormsDesignerFiles"/> - <ComponentRef Id="IconEditorFiles"/> - <ComponentRef Id="ResourceEditorFiles"/> - <ComponentRef Id="SettingsEditorFiles"/> - <!--<ComponentRef Id="ClassDiagramResources"/> - <ComponentRef Id="ClassDiagramAddInFiles"/> - <ComponentRef Id="ClassCanvasDll"/> - <ComponentRef Id="DiagramsDll"/>--> - - <ComponentRef Id="ICSharpCodeXamlBindingDll"/> - <ComponentRef Id="XamlBindingAddin"/> - - <!--<ComponentRef Id="WorkflowDesignerAddin"/> - <ComponentRef Id="WorkflowDesignerDll"/>--> - - <ComponentRef Id="XmlEditorFiles"/> - <ComponentRef Id="AddInManager2Addin"/> - <ComponentRef Id="ICSharpCodeAddInManager2Dll"/> - <ComponentRef Id="AddInManager2ICSharpCodeSharpZipLibDll"/> - <ComponentRef Id="AddInManager2NuGetCoreDll"/> - <ComponentRef Id="AddInManager2MSWebXmlTransformDll"/> - <ComponentRef Id="AddInScoutFiles"/> - <ComponentRef Id="CodeAnalysisFiles"/> - <!--<ComponentRef Id="CodeQualityFiles"/>--> - <ComponentRef Id="CodeCoverageFiles"/> - <ComponentRef Id="DebuggerAddInFiles"/> - <ComponentRef Id="FiletypeIcons"/> - <ComponentRef Id="FiletypeRegistererFiles"/> - <ComponentRef Id="HtmlHelp2Files"/> - <ComponentRef Id="RegExToolkitFiles"/> - <!--<ComponentRef Id="ResourceToolkitFiles"/>--> - <ComponentRef Id="SearchAndReplaceFiles"/> - <ComponentRef Id="ILSpyAddInFiles"/> - - <ComponentRef Id="StartPageAddInFiles"/> - <ComponentRef Id="SubversionAddInDll"/> - <ComponentRef Id="GitAddInDll"/> - <ComponentRef Id="UnitTestingAddInFiles"/> - <ComponentRef Id="SyntaxModesFiles"/> - <ComponentRef Id="SharpDevelopWebsiteShortcut"/> - <ComponentRef Id="SharpDevelopAppPathRegistrySetting"/> - <ComponentRef Id="WPFAssemblyInfoTemplate"/> - <ComponentRef Id="AddInWritingHelp"/> - <ComponentRef Id="CSharpProjectSharpDevelopCustomToolTemplates"/> - <ComponentRef Id="AppConfigFileTemplate"/> - - <ComponentRef Id="ICSharpCodeScriptingDll"/> - <!-- - <ComponentRef Id="PythonConsoleProjectTemplate"/> - <ComponentRef Id="PythonEmptyClassTemplate"/> - <ComponentRef Id="PythonEmptyFormTemplate"/> - <ComponentRef Id="PythonEmptyUserControlTemplate"/> - <ComponentRef Id="PythonEmptyFileTemplate"/> - <ComponentRef Id="PythonFormsProjectTemplate"/> - <ComponentRef Id="PythonLibraryProjectTemplate"/> - <ComponentRef Id="PythonSilverlightApplicationProjectTemplate"/> - <ComponentRef Id="PythonWPFApplicationProjectTemplate"/> - <ComponentRef Id="PythonWPFWindowFileTemplate"/> - <ComponentRef Id="IpyExe"/> - <ComponentRef Id="IronPythonModulesDll"/> - <ComponentRef Id="IronPythonDll"/> - <ComponentRef Id="IronPythonWpfDll"/> - <ComponentRef Id="IronPythonLicenseRtf"/> - <ComponentRef Id="PythonChironExe"/> - <ComponentRef Id="PythonChironExeConfig"/> - <ComponentRef Id="MicrosoftDynamicDll"/> - <ComponentRef Id="MicrosoftScriptingDll"/> - <ComponentRef Id="MicrosoftScriptingMetadataDll"/> - <ComponentRef Id="PythonBuildTasksDll"/> - <ComponentRef Id="PythonBindingAddin"/> - <ComponentRef Id="PythonBindingDll"/> - <ComponentRef Id="PythonBindingLibRunpyPy"/> - <ComponentRef Id="PythonBindingLibSitePy"/> - <ComponentRef Id="PythonBindingLibFuturePy"/> - <ComponentRef Id="SharpDevelopBuildPythonTargets"/> - <ComponentRef Id="PythonBindingSdTestPy"/> - <ComponentRef Id="PythonBindingSdTestRunnerPy"/> - - <ComponentRef Id="IrExe"/> - <ComponentRef Id="IronRubyDll"/> - <ComponentRef Id="IronRubyLibrariesDll"/> - <ComponentRef Id="IronRubyLicenseApacheHtml"/> - <ComponentRef Id="RubyBindingAddin"/> - <ComponentRef Id="RubyBindingDll"/> - <ComponentRef Id="RubyChironExe"/> - <ComponentRef Id="RubyChironExeConfig"/> - <ComponentRef Id="RubyMicrosoftDynamicDll"/> - <ComponentRef Id="RubyMicrosoftScriptingDll"/> - <ComponentRef Id="RubyMicrosoftScriptingMetadataDll"/> - <ComponentRef Id="RubyEmptyClassFileTemplate"/> - <ComponentRef Id="RubyConsoleProjectTemplate"/> - <ComponentRef Id="RubyEmptyFormFileTemplate"/> - <ComponentRef Id="RubyEmptyFileTemplate"/> - <ComponentRef Id="RubyEmptyUserControlFileTemplate"/> - <ComponentRef Id="RubyFormsProjectTemplate"/> - <ComponentRef Id="RubyLibraryProjectTemplate"/> - <ComponentRef Id="RubySilverlightApplicationProjectTemplate"/> - <ComponentRef Id="RubyWPFApplicationProjectTemplate"/> - <ComponentRef Id="RubyWPFWindowFileTemplate"/> - <ComponentRef Id="RubyBindingSdSelectedTestsFileRb"/> - <ComponentRef Id="RubyBindingSdTestRb"/> - <ComponentRef Id="RubyBindingSdTestResultRb"/> - <ComponentRef Id="RubyBindingSdTestResultWriterRb"/> - <ComponentRef Id="RubyBindingSdTestRunnerRb"/> - --> - - <ComponentRef Id="FSharpBindingDll"/> - <ComponentRef Id="FSharpBindingAddin"/> - - <ComponentRef Id="SharpDevelopSourceAnalysisTargets"/> - <ComponentRef Id="SourceAnalysisAddin"/> - <ComponentRef Id="SourceAnalysisDll"/> - - <ComponentRef Id="HexEditorAddin"/> - <ComponentRef Id="HexEditorDll"/> - - <ComponentRef Id="AvalonEditAddInAddin"/> - <ComponentRef Id="ICSharpCodeAvalonEditAddInDll"/> - - <ComponentRef Id="Hook32Dll"/> - <ComponentRef Id="Hook64Dll"/> - <ComponentRef Id="ICSharpCodeProfilerAddInAddin"/> - <ComponentRef Id="ICSharpCodeProfilerAddInDll"/> - <ComponentRef Id="ICSharpCodeProfilerControllerDll"/> - <ComponentRef Id="ICSharpCodeProfilerControlsDll"/> - <ComponentRef Id="SystemDataSQLiteDll"/> - <ComponentRef Id="IQToolkitDll"/> - - <ComponentRef Id="CppBindingAddin"/> - <ComponentRef Id="CppBindingDll"/> - - <ComponentRef Id="ICSharpCodeWpfDesignAddInDll"/> - <ComponentRef Id="ICSharpCodeWpfDesignDesignerDll"/> - <ComponentRef Id="ICSharpCodeWpfDesignDll"/> - <ComponentRef Id="ICSharpCodeWpfDesignXamlDomDll"/> - <ComponentRef Id="WpfDesignAddin"/> - - <ComponentRef Id="ICSharpCodeDataAddin"/> - <ComponentRef Id="ICSharpCodeDataAddinDll"/> - <ComponentRef Id="ICSharpCodeDataCoreDll"/> - <ComponentRef Id="ICSharpCodeDataCoreUIDll"/> - <ComponentRef Id="ICSharpCodeDataEDMDesignerCoreDll"/> - <ComponentRef Id="ICSharpCodeDataEDMDesignerCoreUIDll"/> - <ComponentRef Id="ICSharpCodeDataSQLServerDll"/> - - <ComponentRef Id="UDCSystemDataSQLiteDll"/> - <ComponentRef Id="UsageDataCollectorAddin"/> - <ComponentRef Id="UsageDataCollectorDll"/> - -<!-- <ComponentRef Id="SharpDevelopReportsEmptyReportFileTemplate"/> - <ComponentRef Id="ICSharpCodeReportDesignerAddin"/> - <ComponentRef Id="ICSharpCodeReportsAddinDll"/> - <ComponentRef Id="ICSharpCodeReportsCoreDll"/> - <ComponentRef Id="IronyDll"/> - <ComponentRef Id="ITextSharpDll"/>--> - - <ComponentRef Id="AboutNuGetCmdletsHelpTxt"/> - <ComponentRef Id="NuGetConsoleTypesDll"/> - <ComponentRef Id="NuGetCoreDll"/> - <ComponentRef Id="NuGetExe"/> - <ComponentRef Id="NuGetNuspecSchema"/> - <ComponentRef Id="NuGetLicenseTxt"/> - <ComponentRef Id="PackageFormatPs1Xml"/> - <ComponentRef Id="PackageManagementAddin"/> - <ComponentRef Id="PackageManagementCmdletsDll"/> - <ComponentRef Id="PackageManagementCmdletsDllHelpXml"/> - <ComponentRef Id="PackageManagementDll"/> - <ComponentRef Id="SharpDevelopEnvDteDll"/> - <ComponentRef Id="PackageManagementPowerShellDll"/> - <!--<ComponentRef Id="PackageManagementICSharpCodeSharpDevelopDomDll"/>--> - <ComponentRef Id="MicrosoftWebXmlTransformDll"/> - <ComponentRef Id="JQuery172NuGetPackage"/> - <ComponentRef Id="Modernizr253NuGetPackage"/> - - <ComponentRef Id="MonoTextTemplatingDll"/> - <ComponentRef Id="TextTemplatingAddin"/> - <ComponentRef Id="TextTemplatingDll"/> - <ComponentRef Id="CSharpTextTemplateFileTemplate"/> - <ComponentRef Id="VBTextTemplateFileTemplate"/> - - <ComponentRef Id="MachineSpecificationsAddIn"/> - <ComponentRef Id="MachineSpecificationsCommandLineDll"/> - <ComponentRef Id="MachineSpecificationsDll"/> - <ComponentRef Id="MachineSpecificationsLicenseTxt"/> - <ComponentRef Id="ToolsMachineSpecificationsDll"/> - <ComponentRef Id="MachineSpecificationsReportingDll"/> - <ComponentRef Id="MachineSpecificationsSparkDll"/> - <ComponentRef Id="Mspec_clr4Exe"/> - <ComponentRef Id="Mspec_x86_clr4Exe"/> - <ComponentRef Id="Mspec_x86Exe"/> - <ComponentRef Id="MspecExe"/> - - <ComponentRef Id="AspNetMvcAddin"/> - <ComponentRef Id="AspNetMvcDll"/> - <ComponentRef Id="AspNetMvcMonoTextTemplatingDll"/> - <ComponentRef Id="SystemWebRazorDll"/> - <ComponentRef Id="AspNetMvcTextTemplatingDll"/> - <ComponentRef Id="AspNetMvcCSharpControllerTemplate"/> - <ComponentRef Id="AspNetMvcAspxCSharpCreateTemplate"/> - <ComponentRef Id="AspNetMvcAspxCSharpDeleteTemplate"/> - <ComponentRef Id="AspNetMvcAspxCSharpDetailsTemplate"/> - <ComponentRef Id="AspNetMvcAspxCSharpEditTemplate"/> - <ComponentRef Id="AspNetMvcAspxCSharpEmptyTemplate"/> - <ComponentRef Id="AspNetMvcAspxCSharpListTemplate"/> - <ComponentRef Id="AspNetMvcRazorCSharpCreateTemplate"/> - <ComponentRef Id="AspNetMvcRazorCSharpDeleteTemplate"/> - <ComponentRef Id="AspNetMvcRazorCSharpDetailsTemplate"/> - <ComponentRef Id="AspNetMvcRazorCSharpEditTemplate"/> - <ComponentRef Id="AspNetMvcRazorCSharpEmptyTemplate"/> - <ComponentRef Id="AspNetMvcRazorCSharpListTemplate"/> - <ComponentRef Id="AspNetMvcVisualBasicControllerTemplate"/> - <ComponentRef Id="AspNetMvcAspxVisualBasicCreateTemplate"/> - <ComponentRef Id="AspNetMvcAspxVisualBasicDeleteTemplate"/> - <ComponentRef Id="AspNetMvcAspxVisualBasicDetailsTemplate"/> - <ComponentRef Id="AspNetMvcAspxVisualBasicEditTemplate"/> - <ComponentRef Id="AspNetMvcAspxVisualBasicEmptyTemplate"/> - <ComponentRef Id="AspNetMvcAspxVisualBasicListTemplate"/> - <ComponentRef Id="AspNetMvcRazorVisualBasicCreateTemplate"/> - <ComponentRef Id="AspNetMvcRazorVisualBasicDeleteTemplate"/> - <ComponentRef Id="AspNetMvcRazorVisualBasicDetailsTemplate"/> - <ComponentRef Id="AspNetMvcRazorVisualBasicEditTemplate"/> - <ComponentRef Id="AspNetMvcRazorVisualBasicEmptyTemplate"/> - <ComponentRef Id="AspNetMvcRazorVisualBasicListTemplate"/> - <ComponentRef Id="CSharpMvcRazorLayoutPageFileTemplate"/> - <ComponentRef Id="CSharpMvcRazorPartialPageFileTemplate"/> - <ComponentRef Id="CSharpMvcRazorViewPageFileTemplate"/> - <ComponentRef Id="VBMvcRazorLayoutPageFileTemplate"/> - <ComponentRef Id="VBMvcRazorPartialPageFileTemplate"/> - <ComponentRef Id="VBMvcRazorViewPageFileTemplate"/> - <ComponentRef Id="CSharpMvc3RazorProjectTemplate"/> - <ComponentRef Id="CSharpMvc4RazorProjectTemplate"/> - <ComponentRef Id="VBMvc3RazorProjectTemplate"/> - <ComponentRef Id="VBMvc4RazorProjectTemplate"/> - - <!--<ComponentRef Id="JavaScriptBindingDll"/> - <ComponentRef Id="JavaScriptBindingAddin"/> - <ComponentRef Id="Antlr3RuntimeDll"/>--> - - <ComponentRef Id="OpenCoverConsoleExe"/> - <ComponentRef Id="OpenCoverConsoleExeConfig"/> - <ComponentRef Id="OpenCoverFrameworkDll"/> - <ComponentRef Id="OpenCoverGendarmeRulesMaintainabilityDll"/> - <ComponentRef Id="OpenCoverGendarmeFrameworkDll"/> - <ComponentRef Id="OpenCoverLog4netConfig"/> - <ComponentRef Id="OpenCoverLog4netDll"/> - <ComponentRef Id="OpenCoverMicrosoftPracticesUnityDll"/> - <ComponentRef Id="OpenCoverMonoCecilDll"/> - <ComponentRef Id="OpenCoverMonoCecilPdbDll"/> - <ComponentRef Id="OpenCoverProfilerX86Dll"/> - <ComponentRef Id="OpenCoverProfilerX64Dll"/> - </Feature> - <Feature Id="SharpDevelopFileAssociations" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="File Associations" - Description="Registers file associations with SharpDevelop."> - <!-- - We put a reference to a dummy component which contains no files - so we can get rid of the Network install options from the drop - down menu for this feature. Seems to be a bug in Windows Installer. - --> - <ComponentRef Id="DummyFileAssocationFeatureComponent"/> - <Feature Id="BooProjectFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="Boo Projects (.booproj)" - Description="Associates Boo projects (.booproj) with SharpDevelop"> - <ComponentRef Id="BooProjectFileAssociation"/> - </Feature> - <Feature Id="CSharpFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="C# Files (.cs)" - Description="Associates C# Files (.cs) with SharpDevelop"> - <ComponentRef Id="CSharpFileAssociation"/> - </Feature> - <Feature Id="CSharpProjectFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="C# Projects (.csproj)" - Description="Associates C# Projects (.csproj) with SharpDevelop"> - <ComponentRef Id="SharpDevelopCSharpProjectFileAssociation"/> - </Feature> - <Feature Id="PythonProjectFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="Python Project Files (.pyproj)" - Description="Associates Python Projects (.pyproj) with SharpDevelop"> - <ComponentRef Id="PythonProjectFileAssociation"/> - </Feature> - <Feature Id="ResxFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="Resource Files (.resx)" - Description="Associates Resource Files (.resx) with SharpDevelop"> - <ComponentRef Id="ResxFileAssociation"/> - </Feature> - <Feature Id="ResourcesFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="Binary Resource Files (.resources)" - Description="Associates Binary Resources files (.resources) with SharpDevelop"> - <ComponentRef Id="ResourcesFileAssociation"/> - </Feature> - <Feature Id="AddInFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="SharpDevelop AddIn Installation Packages (.sdaddin)" - Description="Associates SharpDevelop AddIn Installation packages (.sdaddin) with SharpDevelop"> - <ComponentRef Id="SharpDevelopAddInFileAssociation"/> - </Feature> - <Feature Id="SolutionFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="SharpDevelop Solutions (.sln)" - Description="Associates SharpDevelop Solutions (.sln) with SharpDevelop"> - <ComponentRef Id="SharpDevelopSolutionFileAssociation"/> - </Feature> - <Feature Id="VBFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="VB.NET Files (.vb)" - Description="Associates VB.NET Files (.vb) with SharpDevelop"> - <ComponentRef Id="VBFileAssociation"/> - </Feature> - <Feature Id="VBProjectFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="VB.NET Projects (.vbproj)" - Description="Associates VB.NET Projects (.vbproj) with SharpDevelop"> - <ComponentRef Id="SharpDevelopVBProjectFileAssociation"/> - </Feature> - <Feature Id="WixProjectFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="SharpDevelop WiX Projects (.wixproj)" - Description="Associates SharpDevelop WiX Projects (.wixproj) with SharpDevelop"> - <ComponentRef Id="SharpDevelopWixProjectFileAssociation"/> - </Feature> - <Feature Id="XmlFileAssociation" - Level="2" - AllowAdvertise="no" - InstallDefault="local" - Title="XML Files (.xml)" - Description="Associates XML Files (.xml) with SharpDevelop"> - <ComponentRef Id="XmlFileAssociation"/> - </Feature> - </Feature> - </Feature> - - <!-- Using WixUI --> - <Property Id="WIXUI_INSTALLDIR">INSTALLDIR</Property> - <UI> - <UIRef Id="WixUI_FeatureTree" /> - <Publish - Dialog="ExitDialog" - Control="Finish" - Event="DoAction" - Value="ShowReadme">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish> - </UI> - - <Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Learn about dependencies you should install" /> - <Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1"/> - - <Property Id="WixShellExecTarget" Value="[#Dependencies.html]" /> - <CustomAction - Id="ShowReadme" - BinaryKey="WixCA" - DllEntry="WixShellExec" - Impersonate="yes" /> - - <!-- - If a newer version of SharpDevelop is installed, show an error message. - - This message is not displayed immediately, the FindRelatedProducts - action occurs well into the installation after the user has - configured everything. - --> - <CustomAction Id="NoDowngrade" Error="A later version of [ProductName] is already installed." /> - - <!-- Add RemoveExistingProducts action to install sequence so upgrades can work --> - <InstallExecuteSequence> - <!-- - Display an error message if a newer version found. - - Since the installer completely removes the existing SharpDevelop installation, - downgrades would work without any problems, but for now we - inform the user that a newer version already exists. - -> Actually, there's trouble with downgrades because Windows Installer first determines - the existing components before removing the old installation; so all versioned - libraries will get removed instead of downgraded. - --> - <Custom Action="NoDowngrade" After="FindRelatedProducts">NEWERVERSIONFOUND</Custom> - <!-- - Removes the older version of SharpDevelop, if we are upgrading, - before installing the new version. - - Unfortunately the user is not informed of this upgrade. I think - we need a custom dialog showing the old installation located and - the fact that it is going to be upgraded. - - The best place to do this is after InstallFinalize however if we - do it then after we have removed a file from an addin, and changed - the Component Guid, the modified component is not installed. So - we make sure SharpDevelop is completely removed before installing - the newer version. This also covers us if we accidentally - modify a component but do not change its Guid. - - http://msdn.microsoft.com/library/en-us/msi/setup/removeexistingproducts_action.asp - --> - <RemoveExistingProducts Before="InstallInitialize"/> - </InstallExecuteSequence> - </Product> -</Wix>