Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1717 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
21 changed files with 2134 additions and 72 deletions
@ -0,0 +1,73 @@
@@ -0,0 +1,73 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using ICSharpCode.SharpDevelop.Gui; |
||||
using System; |
||||
using System.Xml; |
||||
|
||||
namespace ICSharpCode.WixBinding |
||||
{ |
||||
/// <summary>
|
||||
/// Creates and adds WixTreeNodes to a tree view.
|
||||
/// </summary>
|
||||
public class WixTreeNodeBuilder |
||||
{ |
||||
WixTreeNodeBuilder() |
||||
{ |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Adds a new tree node containing the xml element to the specified
|
||||
/// nodes collection.
|
||||
/// </summary>
|
||||
public static ExtTreeNode AddNode(ExtTreeNode parentNode, XmlElement element) |
||||
{ |
||||
ExtTreeNode node = CreateNode(element); |
||||
node.AddTo(parentNode); |
||||
return node; |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Adds a new tree node to the tree view.
|
||||
/// </summary>
|
||||
public static ExtTreeNode AddNode(ExtTreeView treeView, XmlElement element) |
||||
{ |
||||
ExtTreeNode node = CreateNode(element); |
||||
node.AddTo(treeView); |
||||
return node; |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Adds all the elements.
|
||||
/// </summary>
|
||||
public static void AddNodes(ExtTreeNode parentNode, XmlNodeList nodes) |
||||
{ |
||||
foreach (XmlNode childNode in nodes) { |
||||
XmlElement childElement = childNode as XmlElement; |
||||
if (childElement != null) { |
||||
AddNode(parentNode, childElement); |
||||
} |
||||
} |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Creates a tree node from the specified element.
|
||||
/// </summary>
|
||||
static ExtTreeNode CreateNode(XmlElement element) |
||||
{ |
||||
switch (element.LocalName) { |
||||
case "Directory": |
||||
return new WixDirectoryTreeNode((WixDirectoryElement)element); |
||||
case "Component": |
||||
return new WixComponentTreeNode((WixComponentElement)element); |
||||
case "File": |
||||
return new WixFileTreeNode((WixFileElement)element); |
||||
} |
||||
return new UnknownWixTreeNode(element); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,155 @@
@@ -0,0 +1,155 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using ICSharpCode.WixBinding; |
||||
using NUnit.Framework; |
||||
using System; |
||||
|
||||
namespace WixBinding.Tests.Document |
||||
{ |
||||
[TestFixture] |
||||
public class DirectoryNameTests |
||||
{ |
||||
[Test] |
||||
public void AdminToolsFolder() |
||||
{ |
||||
Assert.AreEqual("Admin Tools", WixDirectoryElement.GetSystemDirectory("AdminToolsFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void AppDataFolder() |
||||
{ |
||||
Assert.AreEqual("App Data", WixDirectoryElement.GetSystemDirectory("AppDataFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void CommonAppDataFolder() |
||||
{ |
||||
Assert.AreEqual("Common App Data", WixDirectoryElement.GetSystemDirectory("CommonAppDataFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void CommonFiles64Folder() |
||||
{ |
||||
Assert.AreEqual("Common Files 64", WixDirectoryElement.GetSystemDirectory("CommonFiles64Folder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void CommonFilesFolder() |
||||
{ |
||||
Assert.AreEqual("Common Files", WixDirectoryElement.GetSystemDirectory("CommonFilesFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void DesktopFolder() |
||||
{ |
||||
Assert.AreEqual("Desktop", WixDirectoryElement.GetSystemDirectory("DesktopFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void FavoritesFolder() |
||||
{ |
||||
Assert.AreEqual("Favorites", WixDirectoryElement.GetSystemDirectory("FavoritesFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void FontsFolder() |
||||
{ |
||||
Assert.AreEqual("Fonts", WixDirectoryElement.GetSystemDirectory("FontsFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void LocalAppDataFolder() |
||||
{ |
||||
Assert.AreEqual("Local App Data", WixDirectoryElement.GetSystemDirectory("LocalAppDataFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void MyPicturesFolder() |
||||
{ |
||||
Assert.AreEqual("My Pictures", WixDirectoryElement.GetSystemDirectory("MyPicturesFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void PersonalFolder() |
||||
{ |
||||
Assert.AreEqual("Personal", WixDirectoryElement.GetSystemDirectory("PersonalFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void ProgramFiles64Folder() |
||||
{ |
||||
Assert.AreEqual("Program Files 64", WixDirectoryElement.GetSystemDirectory("ProgramFiles64Folder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void ProgramMenuFolder() |
||||
{ |
||||
Assert.AreEqual("Program Menu", WixDirectoryElement.GetSystemDirectory("ProgramMenuFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void SendToFolder() |
||||
{ |
||||
Assert.AreEqual("Send To", WixDirectoryElement.GetSystemDirectory("SendToFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void StartMenuFolder() |
||||
{ |
||||
Assert.AreEqual("Start Menu", WixDirectoryElement.GetSystemDirectory("StartMenuFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void StartupFolder() |
||||
{ |
||||
Assert.AreEqual("Startup", WixDirectoryElement.GetSystemDirectory("StartupFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void System16Folder() |
||||
{ |
||||
Assert.AreEqual("System 16", WixDirectoryElement.GetSystemDirectory("System16Folder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void System64Folder() |
||||
{ |
||||
Assert.AreEqual("System 64", WixDirectoryElement.GetSystemDirectory("System64Folder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void SystemFolder() |
||||
{ |
||||
Assert.AreEqual("System", WixDirectoryElement.GetSystemDirectory("SystemFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void TempFolder() |
||||
{ |
||||
Assert.AreEqual("Temp", WixDirectoryElement.GetSystemDirectory("TempFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void TemplateFolder() |
||||
{ |
||||
Assert.AreEqual("Templates", WixDirectoryElement.GetSystemDirectory("TemplateFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void WindowsFolder() |
||||
{ |
||||
Assert.AreEqual("Windows", WixDirectoryElement.GetSystemDirectory("WindowsFolder")); |
||||
} |
||||
|
||||
[Test] |
||||
public void WindowsVolume() |
||||
{ |
||||
Assert.AreEqual("Windows Volume", WixDirectoryElement.GetSystemDirectory("WindowsVolume")); |
||||
} |
||||
} |
||||
} |
After Width: | Height: | Size: 464 KiB |
@ -0,0 +1,941 @@
@@ -0,0 +1,941 @@
|
||||
<!-- Defines all the directories, files and components to be installed --> |
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/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="SDevelop" LongName="SharpDevelop"> |
||||
<Directory Id="INSTALLDIR" Name="2.1"> |
||||
<Directory Id="BinFolder" Name="bin"> |
||||
<Component Id="SharpDevelopExe" Guid="F632C62C-A4DD-4507-9678-C7DCFF4DBC8C" DiskId="1"> |
||||
<File Id="SharpDevelop.exe" Name="SharpDev.exe" LongName="SharpDevelop.exe" Source="..\..\bin\SharpDevelop.exe"> |
||||
<!-- |
||||
NGens SharpDevelop.exe. Needs the NetFx extension (WixNetFxExtension.dll), |
||||
library (netfx.wixlib) and custom actions (netfxca.dll). |
||||
|
||||
Priority=0 means the image generation occurs during |
||||
setup. Other values defer the generation. |
||||
|
||||
Default Platform value is 32bit which tries to generate images |
||||
for 32 bitversions of the .NET framework on the |
||||
target machine. This will fail on a machine with |
||||
64 bit version of .NET. Cannot use Platform=all |
||||
since this runs NGen for both 32 and 64 bit versions |
||||
regardless of whether they exist on the target |
||||
machine. |
||||
--> |
||||
<netfx:NativeImage Id="SharpDevelopNGenImage" Priority="0" /> |
||||
</File> |
||||
<!-- |
||||
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. |
||||
|
||||
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. For now we can split these up, |
||||
putting the File association icon registry key with its |
||||
icon file and the rest of the file association with |
||||
the SharpDevelop.exe file. Unfortunately replacing the |
||||
ProgId/@Icon requires three registry key elements. |
||||
Running a quick test by deleting the registry keys and |
||||
then trying to repair the installation the keys are |
||||
correctly replaced with the correct file values so I |
||||
do not think this is a problem. |
||||
|
||||
http://msdn.microsoft.com/library/en-us/msi/setup/ice69.asp |
||||
--> |
||||
<ProgId Id="SD.booprojfile" Description="Boo Project" Icon='"[#prjx.ico]"'> |
||||
<Extension Id="booproj"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.cmbxfile" Description="SharpDevelop Combine" Icon='"[#cmbx.ico]"'> |
||||
<Extension Id="cmbx"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.csprojfile" Description="C# Project" Icon='"[#prjx.ico]"'> |
||||
<Extension Id="csproj"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.prjxfile" Description="SharpDevelop Project" Icon='"[#prjx.ico]"'> |
||||
<Extension Id="prjx"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.sdaddinfile" Description="SharpDevelop Project" Icon='"[#addin.ico]"'> |
||||
<Extension Id="sdaddin"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.vbprojfile" Description="VB.NET Project" Icon='"[#prjx.ico]"'> |
||||
<Extension Id="vbproj"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.wixprojfile" Description="WiX Project" Icon='"[#prjx.ico]"'> |
||||
<Extension Id="wixproj"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.xfrmfile" Description="SharpDevelop XML Form" Icon='"[#xfrm.ico]"'> |
||||
<Extension Id="xfrm"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
<ProgId Id="SD.slnfile" Description="SharpDevelop Solution" Icon='"[#cmbx.ico]"'> |
||||
<Extension Id="sln"> |
||||
<Verb Id="open" Target='"[#SharpDevelop.exe]"' Argument='"%1"'/> |
||||
</Extension> |
||||
</ProgId> |
||||
</Component> |
||||
<Component Id="SharpDevelopCoreFiles" Guid="E94FCC8C-9741-45EF-AFDA-9F9CF02BF3F7" DiskId="1"> |
||||
<File Source="..\..\bin\ICSharpCode.Build.Tasks.dll" Name="ICBuild.dll" Id="ICSharpCode.Build.Tasks.dll" LongName="ICSharpCode.Build.Tasks.dll" /> |
||||
<File Source="..\..\bin\ICSharpCode.Core.dll" Name="ICCore.DLL" Id="ICSharpCode.Core.dll" LongName="ICSharpCode.Core.dll" /> |
||||
<File Source="..\..\bin\ICSharpCode.Core.xml" Name="ICCore.XML" Id="ICSharpCode.Core.xml" LongName="ICSharpCode.Core.xml" /> |
||||
<File Source="..\..\bin\ICSharpCode.NRefactory.dll" Name="ICNef.DLL" Id="ICSharpCode.NRefactory.dll" LongName="ICSharpCode.NRefactory.dll" /> |
||||
<File Source="..\..\bin\ICSharpCode.SharpDevelop.dll" Name="ICSharp.DLL" Id="ICSharpCode.SharpDevelop.dll" LongName="ICSharpCode.SharpDevelop.dll" /> |
||||
<File Source="..\..\bin\ICSharpCode.SharpDevelop.Dom.dll" Name="ICDom.DLL" Id="ICSharpCode.SharpDevelop.Dom.dll" LongName="ICSharpCode.SharpDevelop.Dom.dll" /> |
||||
<File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.dll" Name="ICsda.dll" Id="ICSharpCode.SharpDevelop.Sda.dll" LongName="ICSharpCode.SharpDevelop.Sda.dll" /> |
||||
<File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.dll.config" Name="ICSda.con" Id="ICSharpCode.SharpDevelop.Sda.dll.config" LongName="ICSharpCode.SharpDevelop.Sda.dll.config" /> |
||||
<File Source="..\..\bin\ICSharpCode.SharpDevelop.Sda.xml" Name="ICSda.XML" Id="ICSharpCode.SharpDevelop.Sda.xml" LongName="ICSharpCode.SharpDevelop.Sda.xml" /> |
||||
<File Source="..\..\bin\ICSharpCode.TextEditor.dll" Name="ICText.DLL" Id="ICSharpCode.TextEditor.dll" LongName="ICSharpCode.TextEditor.dll" /> |
||||
<File Source="..\..\bin\log4net.dll" Name="log4net.dll" Id="log4net.dll" /> |
||||
<File Source="..\..\bin\Mono.Cecil.dll" Name="cecil.DLL" Id="Mono.Cecil.dll" LongName="Mono.Cecil.dll" /> |
||||
<File Source="..\..\bin\MonoReflectionLoader.dll" Name="monoref.DLL" Id="MonoReflectionLoader.dll" LongName="MonoReflectionLoader.dll" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.Common.targets" Name="Common.tgt" Id="SharpDevelop.Build.Common.targets" LongName="SharpDevelop.Build.Common.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.CSharp.targets" Name="CSharp.tgt" Id="SharpDevelop.Build.CSharp.targets" LongName="SharpDevelop.Build.CSharp.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.Mono.Gmcs.targets" Name="Gmcs.tgt" Id="SharpDevelop.Build.Mono.Gmcs.targets" LongName="SharpDevelop.Build.Mono.Gmcs.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.Mono.Mbas.targets" Name="Mbas.tgt" Id="SharpDevelop.Build.Mono.Mbas.targets" LongName="SharpDevelop.Build.Mono.Mbas.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.Mono.Mcs.targets" Name="Mcs.tgt" Id="SharpDevelop.Build.Mono.Mcs.targets" LongName="SharpDevelop.Build.Mono.Mcs.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.MSIL.targets" Name="Msil.tgt" Id="SharpDevelop.Build.MSIL.targets" LongName="SharpDevelop.Build.MSIL.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.Build.VisualBasic.targets" Name="VB.tgt" Id="SharpDevelop.Build.VisualBasic.targets" LongName="SharpDevelop.Build.VisualBasic.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.CodeAnalysis.targets" Name="analysis.tgt" Id="SharpDevelop.CodeAnalysis.targets" LongName="SharpDevelop.CodeAnalysis.targets" /> |
||||
<File Source="..\..\bin\SharpDevelop.exe.config" Name="sharpdev.con" Id="SharpDevelop.exe.config" LongName="SharpDevelop.exe.config" /> |
||||
<File Source="..\..\bin\SharpDevelop.exe.manifest" Name="sharpdev.man" Id="SharpDevelop.exe.manifest" LongName="SharpDevelop.exe.manifest" /> |
||||
<File Source="..\..\bin\WeifenLuo.WinFormsUI.Docking.dll" Name="WEIFEN.DLL" Id="WeifenLuo.WinFormsUI.Docking.dll" LongName="WeifenLuo.WinFormsUI.Docking.dll" /> |
||||
</Component> |
||||
<Directory Id="ToolsFolder" Name="Tools"> |
||||
<Directory Id="ComponentInspectorFolder" LongName="ComponentInspector" Name="CompInsp"> |
||||
<Component Guid="E4175768-82FD-45F4-8E7D-BB4031E97454" Id="ComponentInspectorFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\ComponentInspector\ComponentInspector.Core.dll" Name="cicore.dll" Id="Tools.ComponentInspector.Core.dll" LongName="ComponentInspector.Core.dll" /> |
||||
<File Source="..\..\bin\Tools\ComponentInspector\ComponentInspector.exe" Name="compinsp.exe" Id="ComponentInspector.exe" LongName="ComponentInspector.exe" /> |
||||
<File Source="..\..\bin\Tools\ComponentInspector\ComponentInspector.exe.config" Name="compinsp.cfg" Id="ComponentInspector.exe.config" LongName="ComponentInspector.exe.config" /> |
||||
<File Source="..\..\bin\Tools\ComponentInspector\ICSharpCode.Core.dll" Name="icscore.dll" Id="ComponentInspector.ICSharpCode.Core.dll" LongName="ICSharpCode.Core.dll" /> |
||||
<File Source="..\..\bin\Tools\ComponentInspector\log4net.dll" Name="log4net.dll" Id="ComponentInspector.log4net.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="NDocFolder" Name="NDoc"> |
||||
<Component Guid="9949F648-9A56-44FF-830A-84E69067960A" Id="NDocFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\NDoc\NDocGui.exe.manifest" Name="ndgui.man" Id="NDocGui.exe.manifest" LongName="NDocGui.exe.manifest" /> |
||||
<File Source="..\..\bin\Tools\NDoc\Interop.MSHelpCompiler.dll" Name="imshc.dll" Id="Interop.MSHelpCompiler.dll" LongName="Interop.MSHelpCompiler.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Core.dll" Name="ndcore.dll" Id="NDoc.Core.dll" LongName="NDoc.Core.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.Intellisense.dll" Name="nddi.dll" Id="NDoc.Documenter.Intellisense.dll" LongName="NDoc.Documenter.Intellisense.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.JavaDoc.dll" Name="ndjd.dll" Id="NDoc.Documenter.JavaDoc.dll" LongName="NDoc.Documenter.JavaDoc.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.Latex.dll" Name="nddl.dll" Id="NDoc.Documenter.Latex.dll" LongName="NDoc.Documenter.Latex.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.LinearHtml.dll" Name="nddlh.dll" Id="NDoc.Documenter.LinearHtml.dll" LongName="NDoc.Documenter.LinearHtml.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.Msdn2.dll" Name="nddm2.dll" Id="NDoc.Documenter.Msdn2.dll" LongName="NDoc.Documenter.Msdn2.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.Msdn.dll" Name="nddm.dll" Id="NDoc.Documenter.Msdn.dll" LongName="NDoc.Documenter.Msdn.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.NativeHtmlHelp2.dll" Name="nddnhh.dll" Id="NDoc.Documenter.NativeHtmlHelp2.dll" LongName="NDoc.Documenter.NativeHtmlHelp2.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.Documenter.Xml.dll" Name="nddx.dll" Id="NDoc.Documenter.Xml.dll" LongName="NDoc.Documenter.Xml.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.ExtendedUI.dll" Name="dneui.dll" Id="NDoc.ExtendedUI.dll" LongName="NDoc.ExtendedUI.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDoc.VisualStudio.dll" Name="ndvs.dll" Id="NDoc.VisualStudio.dll" LongName="NDoc.VisualStudio.dll" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDocConsole.exe" Name="ndcons.exe" Id="NDocConsole.exe" LongName="NDocConsole.exe" /> |
||||
<File Source="..\..\bin\Tools\NDoc\NDocGui.exe" Name="NDocGui.exe" Id="NDocGui.exe" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="WixFolder" Name="Wix"> |
||||
<Component Guid="78F8DB04-62B1-4A2F-A0D5-D8D890FE5D02" Id="WixFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\Wix\WixVSExtension.dll" Name="WIXVSE_1.DLL" Id="WixVSExtension.dll" LongName="WixVSExtension.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\candle.exe" Name="candle.exe" Id="candle.exe" /> |
||||
<File Source="..\..\bin\Tools\Wix\candle.exe.config" Name="CANDLE_1.CON" Id="candle.exe.config" LongName="candle.exe.config" /> |
||||
<File Source="..\..\bin\Tools\Wix\CPL.TXT" Name="CPL.TXT" Id="CPL.TXT" /> |
||||
<File Source="..\..\bin\Tools\Wix\dark.exe" Name="dark.exe" Id="dark.exe" /> |
||||
<File Source="..\..\bin\Tools\Wix\dark.exe.config" Name="DARKEXE.CON" Id="dark.exe.config" LongName="dark.exe.config" /> |
||||
<File Source="..\..\bin\Tools\Wix\License.rtf" Name="License.rtf" Id="License.rtf" /> |
||||
<File Source="..\..\bin\Tools\Wix\light.exe" Name="light.exe" Id="light.exe" /> |
||||
<File Source="..\..\bin\Tools\Wix\light.exe.config" Name="LIGHT_1.CON" Id="light.exe.config" LongName="light.exe.config" /> |
||||
<File Source="..\..\bin\Tools\Wix\lit.exe" Name="lit.exe" Id="lit.exe" /> |
||||
<File Source="..\..\bin\Tools\Wix\lit.exe.config" Name="LITEXE.CON" Id="lit.exe.config" LongName="lit.exe.config" /> |
||||
<File Source="..\..\bin\Tools\Wix\mergemod.dll" Name="mergemod.dll" Id="mergemod.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" Name="MICROS_1.DLL" Id="Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" LongName="Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\netfx.wixlib" Name="netfx.lib" LongName="netfix.wixlib" Id="netfx.wixlib" /> |
||||
<File Source="..\..\bin\Tools\Wix\netfxca.dll" Name="netfxca.dll" Id="netfxca.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\pcaexec.dll" Name="pcaexec.dll" Id="pcaexec.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\pcaext.dll" Name="pcaext.dll" Id="pcaext.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\pcasched.dll" Name="pcasched.dll" Id="pcasched.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\pubca.wixlib" Name="pubca.lib" LongName="pubca.wixlib" Id="pubca.wixlib" /> |
||||
<File Source="..\..\bin\Tools\Wix\sca.wixlib" Name="sca.lib" Id="sca.wixlib" LongName="sca.wixlib" /> |
||||
<File Source="..\..\bin\Tools\Wix\scaexec.dll" Name="scaexec.dll" Id="scaexec.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\scasched.dll" Name="scasched.dll" Id="scasched.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\tallow.exe" Name="tallow.exe" Id="tallow.exe" /> |
||||
<File Source="..\..\bin\Tools\Wix\tallow.exe.config" Name="tallow.con" Id="tallow.exe.config" LongName="tallow.exe.config" /> |
||||
<File Source="..\..\bin\Tools\Wix\vs.wixlib" Name="vs.wix" Id="vs.wixlib" LongName="vs.wixlib" /> |
||||
<File Source="..\..\bin\Tools\Wix\winterop.dll" Name="winterop.dll" Id="winterop.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\wix.dll" Name="wix.dll" Id="wix.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\wix.targets" Name="wix.tgt" Id="wix.targets" LongName="wix.targets" /> |
||||
<File Source="..\..\bin\Tools\Wix\wixca.dll" Name="wixca.dll" Id="wixca.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\wixca.wixlib" Name="wixca.lib" Id="wixca.wixlib" LongName="wixca.wixlib"/> |
||||
<File Source="..\..\bin\Tools\Wix\WixCop.exe" Name="WixCop.exe" Id="WixCop.exe" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixNetFxExtension.dll" Name="wixnet.dll" Id="WixNetFxExtension.dll" LongName="WixNetFxExtension.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixTasks.dll" Name="WixTasks.dll" Id="WixTasks.dll" /> |
||||
<File Source="..\..\bin\Tools\Wix\wixui.wixlib" Name="wixui.lib" LongName="wixui.wixlib" Id="wixui.wixlib" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixUI_de-de.wxl" Name="wixuide.wxl" Id="WixUI_de_de.wxl" LongName="WixUI_de-de.wxl" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixUI_en-us.wxl" Name="wixuien.wxs" Id="WixUI_en_us.wxl" LongName="WixUI_en-us.wxl" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixUI_es-es.wxl" Name="wixuies.wxl" Id="WixUI_es_es.wxl" LongName="WixUI_es-es.wxl" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixUI_nl-nl.wxl" Name="wixuinl.wxl" Id="WixUI_nl_nl.wxl" LongName="WixUI_nl-nl.wxl" /> |
||||
<File Source="..\..\bin\Tools\Wix\WixUI_uk-ua.wxl" Name="wixuiuk.wxl" Id="WixUI_uk_ua.wxl" LongName="WixUI_uk-ua.wxl" /> |
||||
</Component> |
||||
<Directory Id="WixBitmapsFolder" Name="Bitmaps"> |
||||
<Component Guid="363E0512-B16C-43ED-A1BE-CE91DBD2463E" Id="WixBitmapFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\Wix\Bitmaps\bannrbmp.bmp" Name="bannrbmp.bmp" Id="bannrbmp.bmp" /> |
||||
<File Source="..\..\bin\Tools\Wix\Bitmaps\dlgbmp.bmp" Name="dlgbmp.bmp" Id="dlgbmp.bmp" /> |
||||
<File Source="..\..\bin\Tools\Wix\Bitmaps\exclamic.ico" Name="exclamic.ico" Id="exclamic.ico" /> |
||||
<File Source="..\..\bin\Tools\Wix\Bitmaps\info.ico" Name="info.ico" Id="info.ico" /> |
||||
<File Source="..\..\bin\Tools\Wix\Bitmaps\New.ico" Name="New.ico" Id="New.ico" /> |
||||
<File Source="..\..\bin\Tools\Wix\Bitmaps\Up.ico" Name="Up.ico" Id="Up.ico" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="WixDocFolder" Name="doc"> |
||||
<Component Guid="2F5AC556-CE36-47EA-AB6C-F8623AA4A6BE" Id="WixDocFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\Wix\doc\WiX.chm" Name="Wix.chm" Id="Wix.chm" /> |
||||
<File Source="..\..\bin\Tools\Wix\doc\wix.xsd" Name="wix.xsd" Id="wix.xsd" /> |
||||
<File Source="..\..\bin\Tools\Wix\doc\wixloc.xsd" Name="wixloc.xsd" Id="wixloc.xsd" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="WixIncFolder" Name="inc"> |
||||
<Component Guid="07E93366-FFBD-4C7A-AF4B-F557EC5B42DD" Id="WixIncFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\Wix\inc\aclutil.h" Name="aclutil.h" Id="aclutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\cabcutil.h" Name="cabcutil.h" Id="cabcutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\cabutil.h" Name="cabutil.h" Id="cabutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\dirutil.h" Name="dirutil.h" Id="dirutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\dutil.h" Name="dutil.h" Id="dutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\fileutil.h" Name="fileutil.h" Id="fileutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\memutil.h" Name="memutil.h" Id="memutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\metautil.h" Name="metautil.h" Id="metautil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\perfutil.h" Name="perfutil.h" Id="perfutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\sqlutil.h" Name="sqlutil.h" Id="sqlutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\strutil.h" Name="strutil.h" Id="strutil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\wcautil.h" Name="wcautil.h" Id="wcautil.h" /> |
||||
<File Source="..\..\bin\Tools\Wix\inc\xmlutil.h" Name="xmlutil.h" Id="xmlutil.h" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="WixLibFolder" Name="lib"> |
||||
<Component Guid="B2006977-986A-40C2-8C36-C349AC90DF5E" Id="WixLibFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\Wix\lib\dutil.lib" Name="dutil.lib" Id="dutil.lib" /> |
||||
<File Source="..\..\bin\Tools\Wix\lib\wcautil.lib" Name="wcautil.lib" Id="wcautil.lib" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="NUnitFolder" Name="NUnit"> |
||||
<Component Guid="264B36E0-A168-432B-A227-F628D0159370" Id="NUnitFiles" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.core.extensions.dll" Name="nucext.dll" Id="nunit.core.extensions.dll" LongName="nunit.core.extensions.dll" /> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.uikit.dll" Name="nuuikit.dll" Id="nunit.uikit.dll" LongName="nunit.uikit.dll" /> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.util.dll" Name="nuutil.dll" Id="nunit.util.dll" LongName="nunit.util.dll" /> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit-console.exe" Name="nucons.exe" Id="nunit_console.exe" LongName="nunit-console.exe" /> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit-console.exe.config" Name="nucons.con" Id="nunit_console.exe.config" LongName="nunit-console.exe.config" /> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit-console-runner.dll" Name="nucrun.dll" Id="nunit_console_runner.dll" LongName="nunit-console-runner.dll" /> |
||||
</Component> |
||||
<Component Guid="6485334C-163C-479E-9ACE-8E738D9BDB96" Id="NUnitCoreDll" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.core.dll" Name="nucore.dll" Id="nunit.core.dll" LongName="nunit.core.dll" /> |
||||
</Component> |
||||
<Component Guid="AB89A052-2D0A-426E-B755-6FA1A9C1C64F" Id="NUnitFrameworkDll" DiskId="1"> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.framework.dll" Name="nuframe.dll" Id="nunit.framework.dll" LongName="nunit.framework.dll" /> |
||||
</Component> |
||||
<Directory Id="NUnitGacFolder" Name="GAC"> |
||||
<!-- |
||||
This is a dummy folder since if we just add the |
||||
assemblies to the GAC then the files are not |
||||
copied to the disk so we need to have the NUnit |
||||
dlls specified in two places. Having them in two |
||||
places but specified as belonging to the same |
||||
directory triggers ICE30 so we have a dummy GAC |
||||
directory which should be deleted by the |
||||
installer after the install completes since it |
||||
is empty. |
||||
|
||||
http://msdn.microsoft.com/library/en-us/msi/setup/ice30.asp |
||||
--> |
||||
<Component Guid="5EB28F57-9CF9-41E0-9A76-563546BDA355" Id="NUnitCoreGacDll" DiskId="1"> |
||||
<!-- |
||||
Only add NUnit.Core to the GAC if the user |
||||
has Admin rights. |
||||
--> |
||||
<Condition>Privileged</Condition> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.core.dll" Name="nucorg.dll" Id="nunit.core.gac.dll" LongName="nunit.core.dll" Assembly=".net" AssemblyManifest="nunit.core.gac.dll" KeyPath="yes" /> |
||||
</Component> |
||||
<Component Guid="C67FD446-8BCD-491B-98A2-ED179FF397B2" Id="NUnitFrameworkGacDll" DiskId="1"> |
||||
<!-- |
||||
Only add NUnit.Core to the GAC if the user |
||||
has Admin rights. |
||||
--> |
||||
<Condition>Privileged</Condition> |
||||
<File Source="..\..\bin\Tools\NUnit\nunit.framework.dll" Name="nuframg.dll" Id="nunit.framework.gac.dll" LongName="nunit.framework.dll" Assembly=".net" AssemblyManifest="nunit.framework.gac.dll" KeyPath="yes" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="DocFolder" Name="doc"> |
||||
<Component Guid="370DE542-C4A9-48DA-ACF8-09949CDCD808" Id="SharpDevelopDocFiles" DiskId="1"> |
||||
<File Source="..\..\doc\AssemblyBaseAddresses.txt" Name="baseaddr.txt" Id="AssemblyBaseAddresses.txt" LongName="AssemblyBaseAddresses.txt" /> |
||||
<File Source="..\..\doc\BuiltWithSharpDevelop.png" Name="bw-sd.PNG" Id="BuiltWithSharpDevelop.png" LongName="BuiltWithSharpDevelop.png" /> |
||||
<File Source="..\..\doc\ChangeLog.xml" Name="change.xml" Id="ChangeLog.xml" LongName="ChangeLog.xml" /> |
||||
<File Source="..\..\doc\copyright.txt" Name="cpyright.txt" Id="copyright.txt" LongName="copyright.txt" /> |
||||
<File Source="..\..\doc\license.txt" Name="license.txt" Id="license.txt" /> |
||||
<File Source="..\..\doc\readme.rtf" Name="readme.rtf" Id="readme.rtf" /> |
||||
<File Source="..\..\doc\SharpDevelopInfoResources.txt" Name="Resource.txt" Id="SharpDevelopInfoResources.txt" LongName="SharpDevelopInfoResources.txt" /> |
||||
</Component> |
||||
<Directory Id="TechNoteFolder" Name="technote" LongName="technotes"> |
||||
<Component Guid="167B7AF9-7267-4AD4-9C47-3373F0329840" Id="SharpDevelopTechNoteFiles" DiskId="1"> |
||||
<File Source="..\..\doc\technotes\Versioning.html" Name="version.htm" Id="Versioning.html" LongName="Versioning.html" /> |
||||
<File Source="..\..\doc\technotes\AddInBuildingGuide.rtf" Name="addbg.rtf" Id="AddInBuildingGuide.rtf" LongName="AddInBuildingGuide.rtf" /> |
||||
<File Source="..\..\doc\technotes\AddInManager.rtf" Name="addmgr.rtf" Id="AddInManager.rtf" LongName="AddInManager.rtf" /> |
||||
<File Source="..\..\doc\technotes\AddInTree.rtf" Name="addtree.rtf" Id="AddInTree.rtf" LongName="AddInTree.rtf" /> |
||||
<File Source="..\..\doc\technotes\CodingStyleGuide.rtf" Name="coding.rtf" Id="CodingStyleGuide.rtf" LongName="CodingStyleGuide.rtf" /> |
||||
<File Source="..\..\doc\technotes\ConditionList.html" Name="condlist.htm" Id="ConditionList.html" LongName="ConditionList.html" /> |
||||
<File Source="..\..\doc\technotes\DoozerList.html" Name="doozer.htm" Id="DoozerList.html" LongName="DoozerList.html" /> |
||||
<File Source="..\..\doc\technotes\listing.css" Name="listing.css" Id="listing.css" /> |
||||
<File Source="..\..\doc\technotes\TechicalWritingMadeEasier.rtf" Name="techwrit.rtf" Id="TechicalWritingMadeEasier.rtf" LongName="TechicalWritingMadeEasier.rtf" /> |
||||
<File Source="..\..\doc\technotes\TheFineArtOfCommenting.rtf" Name="comment.rtf" Id="TheFineArtOfCommenting.rtf" LongName="TheFineArtOfCommenting.rtf" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="DataFolder" Name="data"> |
||||
<Directory Id="ConversionStyleSheetsFolder" LongName="ConversionStyleSheets" Name="convss"> |
||||
<Component Guid="EEC59BAB-23BE-4FD3-8788-4A6023A6B394" Id="ConversionStyleSheetFiles" DiskId="1"> |
||||
<File Source="..\..\data\ConversionStyleSheets\ConvertPrjx10to11.xsl" Name="CONVER_1.XSL" Id="ConvertPrjx10to11.xsl" LongName="ConvertPrjx10to11.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\CSharp_prjx2csproj.xsl" Name="CSHARP_1.XSL" Id="CSharp_prjx2csproj.xsl" LongName="CSharp_prjx2csproj.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\CSharp_prjx2csproj_user.xsl" Name="CSHARP_2.XSL" Id="CSharp_prjx2csproj_user.xsl" LongName="CSharp_prjx2csproj_user.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\ShowChangeLog.xsl" Name="SHOWCH_1.XSL" Id="ShowChangeLog.xsl" LongName="ShowChangeLog.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\ShowXmlDocumentation.xsl" Name="SHOWXM_1.XSL" Id="ShowXmlDocumentation.xsl" LongName="ShowXmlDocumentation.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\SVNChangelogToXml.xsl" Name="SVNCHA_1.XSL" Id="SVNChangelogToXml.xsl" LongName="SVNChangelogToXml.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\vsnet2msbuild.xsl" Name="VSNET2_1.XSL" Id="vsnet2msbuild.xsl" LongName="vsnet2msbuild.xsl" /> |
||||
<File Source="..\..\data\ConversionStyleSheets\vsnet2msbuild_user.xsl" Name="VSNET2_2.XSL" Id="vsnet2msbuild_user.xsl" LongName="vsnet2msbuild_user.xsl" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="ModesFolder" Name="modes"> |
||||
<Component Guid="A716BD06-421C-4379-B99F-3E7874C1FDC7" Id="SyntaxModesFiles" DiskId="1"> |
||||
<File Source="..\..\data\modes\C64CSharp.xshd" Name="C64CSH_1.XSH" Id="C64CSharp.xshd" LongName="C64CSharp.xshd" /> |
||||
<File Source="..\..\data\modes\CSharp-Mode-VSEnh.xshd" Name="CSHARP_1.XSH" Id="CSharp_Mode_VSEnh.xshd" LongName="CSharp-Mode-VSEnh.xshd" /> |
||||
<File Source="..\..\data\modes\Jay-Mode.xshd" Name="JAY-MODE.XSH" Id="Jay_Mode.xshd" LongName="Jay-Mode.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" Name="ASCIIT_1.XML" Id="ASCIITable.xml" LongName="ASCIITable.xml" /> |
||||
<File Source="..\..\data\options\TextLib\CSharpDocumentationTags.xml" Name="CSHARP_1.XML" Id="CSharpDocumentationTags.xml" LongName="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" Name="SHARPD_1.SDC" Id="SharpDevelopControlLibrary.sdcl" LongName="SharpDevelopControlLibrary.sdcl" /> |
||||
<File Source="..\..\data\options\SharpDevelopProperties.xml" Name="SHARPD_1.XML" Id="SharpDevelopProperties.xml" LongName="SharpDevelopProperties.xml" /> |
||||
<File Source="..\..\data\options\SharpDevelop-templates.xml" Name="SHARPD_2.XML" Id="SharpDevelop_templates.xml" LongName="SharpDevelop-templates.xml" /> |
||||
<File Source="..\..\data\options\SharpDevelop-tools.xml" Name="SHARPD_3.XML" Id="SharpDevelop_tools.xml" LongName="SharpDevelop-tools.xml" /> |
||||
<File Source="..\..\data\options\StandardHeader.xml" Name="STANDA_1.XML" Id="StandardHeader.xml" LongName="StandardHeader.xml" /> |
||||
<File Source="..\..\data\options\TipsOfTheDay.xml" Name="TIPSOF_1.XML" Id="TipsOfTheDay.xml" LongName="TipsOfTheDay.xml" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="ResourcesFolder" LongName="resources" Name="resource"> |
||||
<Directory Id="CssFolder" Name="css"> |
||||
<Component Guid="458B2D53-EE43-4586-BDEB-E9AFF37F720B" Id="CssFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\css\MsdnHelp.css" Name="MsdnHelp.css" Id="MsdnHelp.css" /> |
||||
<File Source="..\..\data\resources\css\SharpDevelopStandard.css" Name="SHARPD_1.CSS" Id="SharpDevelopStandard.css" LongName="SharpDevelopStandard.css" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="InstallerBitmapsFolder" LongName="InstallerBitmaps" Name="instbmps"> |
||||
<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" Name="DEFAUL_1.BMP" Id="default_banner.bmp" LongName="default-banner.bmp" /> |
||||
<File Source="..\..\data\resources\InstallerBitmaps\default-dialog.bmp" Name="DEFAUL_2.BMP" Id="default_dialog.bmp" LongName="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" LongName="languages" Name="langs"> |
||||
<Component Guid="52CFA578-E494-48D1-9928-38C3F867C47D" Id="LanguageBitmapFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\languages\usa.png" Name="usa.png" Id="usa.png" /> |
||||
<File Source="..\..\data\resources\languages\Arabic.png" Name="Arabic.png" Id="Arabic.png" /> |
||||
<File Source="..\..\data\resources\languages\badgoisern.png" Name="BADGOI_1.PNG" Id="badgoisern.png" LongName="badgoisern.png" /> |
||||
<File Source="..\..\data\resources\languages\brazil.png" Name="brazil.png" Id="brazil.png" /> |
||||
<File Source="..\..\data\resources\languages\bulgaria.png" Name="bulgaria.png" Id="bulgaria.png" /> |
||||
<File Source="..\..\data\resources\languages\catalonia.png" Name="CATALO_1.PNG" Id="catalonia.png" LongName="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" Name="LANGUA_1.XML" Id="LanguageDefinition.xml" LongName="LanguageDefinition.xml" /> |
||||
<File Source="..\..\data\resources\languages\lithuania.png" Name="LITHUA_1.PNG" Id="lithuania.png" LongName="lithuania.png" /> |
||||
<File Source="..\..\data\resources\languages\mexico.png" Name="mexico.png" Id="mexico.png" /> |
||||
<File Source="..\..\data\resources\languages\netherlands.png" Name="NETHER_1.PNG" Id="netherlands.png" LongName="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" Name="SOUTH__1.PNG" Id="south_korea.png" LongName="south_korea.png" /> |
||||
<File Source="..\..\data\resources\languages\spain.png" Name="spain.png" Id="spain.png" /> |
||||
<File Source="..\..\data\resources\languages\sweden.png" Name="sweden.png" Id="sweden.png" /> |
||||
<File Source="..\..\data\resources\languages\turkey.png" Name="turkey.png" Id="turkey.png" /> |
||||
<File Source="..\..\data\resources\languages\uk.png" Name="uk.png" Id="uk.png" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="LayoutsFolder" Name="layouts"> |
||||
<Component Guid="B982324C-D787-425E-BB2C-4EF4C983867D" Id="LayoutFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\layouts\Plain.xml" Name="Plain.xml" Id="Plain.xml" /> |
||||
<File Source="..\..\data\resources\layouts\Debug.xml" Name="Debug.xml" Id="Debug.xml" /> |
||||
<File Source="..\..\data\resources\layouts\Default.xml" Name="Default.xml" Id="Default.xml" /> |
||||
<File Source="..\..\data\resources\layouts\LayoutConfig.xml" Name="LAYOUT_1.XML" Id="LayoutConfig.xml" LongName="LayoutConfig.xml" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="StartPageFolder" Name="startpag" LongName="startpage"> |
||||
<Directory Id="StartPageLayoutFolder" Name="Layout"> |
||||
<Directory Id="LayoutBlueFolder" Name="blue"> |
||||
<Component Guid="1DFAB472-3E8E-4E0B-908F-0FD1F520792F" Id="StartPageLayoutBlueFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\blue\balken_rechts.gif" Name="BALKEN_1.GIF" Id="Blue_balken_rechts.gif" LongName="balken_rechts.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\blue\balken_links.gif" Name="BALKEN_2.GIF" Id="Blue_balken_links.gif" LongName="balken_links.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\blue\balken_mitte.gif" Name="BALKEN_3.GIF" Id="Blue_balken_mitte.gif" LongName="balken_mitte.gif" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="LayoutBrownFolder" Name="brown"> |
||||
<Component Guid="3A3A5F7B-0A62-4A53-9DB7-209F4A863EF9" Id="StartPageLayoutBrownFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\brown\balken_rechts.gif" Name="BALKEN_4.GIF" Id="Brown_balken_rechts.gif" LongName="balken_rechts.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\brown\balken_links.gif" Name="BALKEN_5.GIF" Id="Brown_balken_links.gif" LongName="balken_links.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\brown\balken_mitte.gif" Name="BALKEN_6.GIF" Id="Brown_balken_mitte.gif" LongName="balken_mitte.gif" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="LayoutCommonFolder" Name="common"> |
||||
<Component Guid="B99D6762-087A-49DA-B1BB-F24E08CF4CC2" Id="StartPageLayoutCommonFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\common\pixel_weiss.gif" Name="PIXEL__1.GIF" Id="pixel_weiss.gif" LongName="pixel_weiss.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\common\blind.gif" Name="blind.gif" Id="blind.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\common\dot_listing.gif" Name="DOT_LI_1.GIF" Id="dot_listing.gif" LongName="dot_listing.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\common\klinker_milestone.gif" Name="KLINKE_1.GIF" Id="klinker_milestone.gif" LongName="klinker_milestone.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\common\line_hor_black.gif" Name="LINE_H_1.GIF" Id="line_hor_black.gif" LongName="line_hor_black.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\common\milestone_col_head.gif" Name="MILEST_1.GIF" Id="milestone_col_head.gif" LongName="milestone_col_head.gif" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="LayoutGreenFolder" Name="green"> |
||||
<Component Guid="81709CEC-4157-485B-854E-0ACF81D8E53D" Id="StartPageLayoutGreenFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\green\balken_rechts.gif" Name="BALKEN_7.GIF" Id="Green_balken_rechts.gif" LongName="balken_rechts.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\green\balken_links.gif" Name="BALKEN_8.GIF" Id="Green_balken_links.gif" LongName="balken_links.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\green\balken_mitte.gif" Name="BALKEN_9.GIF" Id="Green_balken_mitte.gif" LongName="balken_mitte.gif" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="LayoutOrangeFolder" Name="orange"> |
||||
<Component Guid="1AADCE06-721C-4F61-945F-42F9920685B6" Id="StartPageLayoutOrangeFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\orange\balken_rechts.gif" Name="BALKE_10.GIF" Id="Orange_balken_rechts.gif" LongName="balken_rechts.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\orange\balken_links.gif" Name="BALKE_11.GIF" Id="Orange_balken_links.gif" LongName="balken_links.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\orange\balken_mitte.gif" Name="BALKE_12.GIF" Id="Orange_balken_mitte.gif" LongName="balken_mitte.gif" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="LayoutRedFolder" Name="red"> |
||||
<Component Guid="FDDB0436-8AAF-4B76-B2A3-4973567A1D57" Id="StartPageLayoutRedFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\red\balken_rechts.gif" Name="BALKE_13.GIF" Id="Red_balken_rechts.gif" LongName="balken_rechts.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\red\balken_links.gif" Name="BALKE_14.GIF" Id="Red_balken_links.gif" LongName="balken_links.gif" /> |
||||
<File Source="..\..\data\resources\startpage\Layout\red\balken_mitte.gif" Name="BALKE_15.GIF" Id="Red_balken_mitte.gif" LongName="balken_mitte.gif" /> |
||||
</Component> |
||||
</Directory> |
||||
<Component Guid="4A3761D8-42D7-4A18-9F7E-4BE31523710B" Id="StartPageLayoutFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\startpage\Layout\default.css" Name="default.css" Id="default.css" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
<Component Guid="D8322576-2925-4F43-ACB0-05369DC5FC67" Id="StringResourceFiles" DiskId="1"> |
||||
<File Source="..\..\data\resources\StringResources.tr.resources" Name="STRING_1.RES" Id="StringResources.tr.resources" LongName="StringResources.tr.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.cz.resources" Name="STRING_2.RES" Id="StringResources.cz.resources" LongName="StringResources.cz.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.de.resources" Name="STRING_3.RES" Id="StringResources.de.resources" LongName="StringResources.de.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.es.resources" Name="STRING_4.RES" Id="StringResources.es.resources" LongName="StringResources.es.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.es-mx.resources" Name="STRING_5.RES" Id="StringResources.es_mx.resources" LongName="StringResources.es-mx.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.fr.resources" Name="STRING_6.RES" Id="StringResources.fr.resources" LongName="StringResources.fr.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.hu.resources" Name="STRING_7.RES" Id="StringResources.hu.resources" LongName="StringResources.hu.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.it.resources" Name="STRING_8.RES" Id="StringResources.it.resources" LongName="StringResources.it.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.kr.resources" Name="STRING_9.RES" Id="StringResources.kr.resources" LongName="StringResources.kr.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.nl.resources" Name="STRIN_10.RES" Id="StringResources.nl.resources" LongName="StringResources.nl.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.no.resources" Name="STRIN_11.RES" Id="StringResources.no.resources" LongName="StringResources.no.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.pl.resources" Name="STRIN_12.RES" Id="StringResources.pl.resources" LongName="StringResources.pl.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.pt-br.resources" Name="STRIN_13.RES" Id="StringResources.pt_br.resources" LongName="StringResources.pt-br.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.ro.resources" Name="STRIN_14.RES" Id="StringResources.ro.resources" LongName="StringResources.ro.resources" /> |
||||
<File Source="..\..\data\resources\StringResources.se.resources" Name="STRIN_15.RES" Id="StringResources.se.resources" LongName="StringResources.se.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" Name="APPCON_1.XSD" Id="appconfig.xsd" LongName="appconfig.xsd" /> |
||||
<File Source="..\..\data\schemas\manifest.xsd" Name="manifest.xsd" Id="manifest.xsd" /> |
||||
<File Source="..\..\data\schemas\nant.xsd" Name="nant.xsd" Id="nant.xsd" /> |
||||
<File Source="..\..\data\schemas\readme.txt" Name="readme.txt" Id="readme.txt" /> |
||||
<File Source="..\..\data\schemas\W3C-License.html" Name="W3C-LI_1.HTM" Id="W3C_License.html" LongName="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" Name="XMLSCH_1.XSD" Id="XMLSchema.xsd" LongName="XMLSchema.xsd" /> |
||||
<File Source="..\..\data\schemas\xslt.xsd" Name="xslt.xsd" Id="xslt.xsd" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="TemplatesFolder" Name="template" LongName="templates"> |
||||
<Directory Id="FileTemplatesFolder" Name="file"> |
||||
<Directory Id="CSharpFileTemplatesFolder" Name="CSharp"> |
||||
<Component Guid="178B7A4B-FEE8-432D-A014-256FAA5441BE" Id="CSharpFileTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\file\CSharp\FileCategorySortOrder.xml" Name="FILECA_1.XML" Id="CSharpFileCategorySortOrder.xml" LongName="FileCategorySortOrder.xml" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Empty.xft" Name="CSHARP_1.XFT" Id="CSharp.Empty.xft" LongName="CSharp.Empty.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.EmptyClass.xft" Name="CSHARP_2.XFT" Id="CSharp.EmptyClass.xft" LongName="CSharp.EmptyClass.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Forms.Form.xft" Name="CSHARP_3.XFT" Id="CSharp.Forms.Form.xft" LongName="CSharp.Forms.Form.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Forms.UserControl.xft" Name="CSHARP_4.XFT" Id="CSharp.Forms.UserControl.xft" LongName="CSharp.Forms.UserControl.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Gtk.Window.xft" Name="CSHARP_5.XFT" Id="CSharp.Gtk.Window.xft" LongName="CSharp.Gtk.Window.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Interface.xft" Name="CSHARP_6.XFT" Id="CSharp.Interface.xft" LongName="CSharp.Interface.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Patterns.Singleton.xft" Name="CSHARP_7.XFT" Id="CSharp.Patterns.Singleton.xft" LongName="CSharp.Patterns.Singleton.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.UnitTest.xft" Name="CSHARP_8.XFT" Id="CSharp.UnitTest.xft" LongName="CSharp.UnitTest.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebControl.xft" Name="CSHARP_9.XFT" Id="CSharp.Web.WebControl.xft" LongName="CSharp.Web.WebControl.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebForm.xft" Name="CSHAR_10.XFT" Id="CSharp.Web.WebForm.xft" LongName="CSharp.Web.WebForm.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.Web.WebService.xft" Name="CSHAR_11.XFT" Id="CSharp.Web.WebService.xft" LongName="CSharp.Web.WebService.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFFlowDocument.xft" Name="CSHAR_12.XFT" Id="CSharp.WPFFlowDocument.xft" LongName="CSharp.WPFFlowDocument.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFPage.xft" Name="CSHAR_13.XFT" Id="CSharp.WPFPage.xft" LongName="CSharp.WPFPage.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFPageFunction.xft" Name="CSHAR_14.XFT" Id="CSharp.WPFPageFunction.xft" LongName="CSharp.WPFPageFunction.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFResourceDictionary.xft" Name="CSHAR_15.XFT" Id="CSharp.WPFResourceDictionary.xft" LongName="CSharp.WPFResourceDictionary.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFUserControl.xft" Name="CSHAR_16.XFT" Id="CSharp.WPFUserControl.xft" LongName="CSharp.WPFUserControl.xft" /> |
||||
<File Source="..\..\data\templates\file\CSharp\CSharp.WPFWindow.xft" Name="CSHAR_17.XFT" Id="CSharp.WPFWindow.xft" LongName="CSharp.WPFWindow.xft" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="MiscFileTemplatesFolder" Name="Misc"> |
||||
<Component Guid="2BDF0836-B3D9-4B96-8F9F-59477B0C6F21" Id="MiscFileTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyXmlUserControl.xft" Name="EMPTYX_1.XFT" Id="EmptyXmlUserControl.xft" LongName="EmptyXmlUserControl.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyHTMLFile.xft" Name="EMPTYH_2.XFT" Id="EmptyHTMLFile.xft" LongName="EmptyHTMLFile.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyMsBuildFile.xft" Name="EMPTYM_3.XFT" Id="EmptyMsBuildFile.xft" LongName="EmptyMsBuildFile.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyNAntBuildFile.xft" Name="EMPTYN_4.XFT" Id="EmptyNAntBuildFile.xft" LongName="EmptyNAntBuildFile.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyResourceFile.xft" Name="EMPTYR_5.XFT" Id="EmptyResourceFile.xft" LongName="EmptyResourceFile.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptySharpReport.xft" Name="EMPTYS_6.XFT" Id="EmptySharpReport.xft" LongName="EmptySharpReport.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyTextFile.xft" Name="EMPTYT_7.XFT" Id="EmptyTextFile.xft" LongName="EmptyTextFile.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyXMLFile.xft" Name="EMPTYX_8.XFT" Id="EmptyXMLFile.xft" LongName="EmptyXMLFile.xft" /> |
||||
<File Source="..\..\data\templates\file\Misc\EmptyXmlForm.xft" Name="EMPTYX_9.XFT" Id="EmptyXmlForm.xft" LongName="EmptyXmlForm.xft" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="SharpDevelopFileTemplatesFolder" LongName="SharpDevelop" Name="SharpDev"> |
||||
<Component Guid="5CD9262F-7A3B-4F28-94FD-43693E669E2B" Id="SharpDevelopFileTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\file\SharpDevelop\SimpleCommand.xft" Name="SIMPLE_1.XFT" Id="SimpleCommand.xft" LongName="SimpleCommand.xft" /> |
||||
<File Source="..\..\data\templates\file\SharpDevelop\AddInOptions.xft" Name="ADDINO_1.XFT" Id="AddInOptions.xft" LongName="AddInOptions.xft" /> |
||||
<File Source="..\..\data\templates\file\SharpDevelop\ExampleMenuCommand.xft" Name="EXAMPL_1.XFT" Id="ExampleMenuCommand.xft" LongName="ExampleMenuCommand.xft" /> |
||||
<File Source="..\..\data\templates\file\SharpDevelop\ExampleOptionPanel.xft" Name="EXAMPL_2.XFT" Id="ExampleOptionPanel.xft" LongName="ExampleOptionPanel.xft" /> |
||||
<File Source="..\..\data\templates\file\SharpDevelop\ExamplePad.xft" Name="EXAMPL_3.XFT" Id="ExamplePad.xft" LongName="ExamplePad.xft" /> |
||||
<File Source="..\..\data\templates\file\SharpDevelop\ExampleView.xft" Name="EXAMPL_4.XFT" Id="ExampleView.xft" LongName="ExampleView.xft" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="VBNetFileTemplatesFolder" Name="VBNet"> |
||||
<Component Guid="723F072E-0B63-45B5-B396-51BF819A1C5A" Id="VBNetFileTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.UnitTest.xft" Name="VBUT_1.XFT" Id="VBNet.UnitTest.xft" LongName="VBNet.UnitTest.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\FileCategorySortOrder.xml" Name="FILECA_1.XML" Id="VBNetFileCategorySortOrder.xml" LongName="FileCategorySortOrder.xml" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Empty.xft" Name="VBEMP_2.XFT" Id="VBNet.Empty.xft" LongName="VBNet.Empty.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.EmptyClass.xft" Name="VBNET_3.XFT" Id="VBNet.EmptyClass.xft" LongName="VBNet.EmptyClass.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Forms.Form.xft" Name="VBNET_4.XFT" Id="VBNet.Forms.Form.xft" LongName="VBNet.Forms.Form.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Forms.UserControl.xft" Name="VBNET_5.XFT" Id="VBNet.Forms.UserControl.xft" LongName="VBNet.Forms.UserControl.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Gtk.Window.xft" Name="VBNET_6.XFT" Id="VBNet.Gtk.Window.xft" LongName="VBNet.Gtk.Window.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Interface.xft" Name="VBNET_7.XFT" Id="VBNet.Interface.xft" LongName="VBNet.Interface.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Module.xft" Name="VBNET_8.XFT" Id="VBNet.Module.xft" LongName="VBNet.Module.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.MyExtensionClass.xft" Name="VBNET_9.XFT" Id="VBNet.MyExtensionClass.xft" LongName="VBNet.MyExtensionClass.xft" /> |
||||
<File Source="..\..\data\templates\file\VBNet\VBNet.Patterns.Singleton.xft" Name="VBNET_10.XFT" Id="VBNet.Patterns.Singleton.xft" LongName="VBNet.Patterns.Singleton.xft" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="ProjectTemplatesFolder" Name="project"> |
||||
<Directory Id="CSharpProjectTemplatesFolder" Name="CSharp"> |
||||
<Component Guid="309F59FF-78DD-45F5-96D9-676295400A19" Id="CSharpProjectTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\project\CSharp\WPFNavigationApplication.xpt" Name="WPFNAV_1.XPT" Id="CSharpWPFNavigationApplication.xpt" LongName="WPFNavigationApplication.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\CompactFormsProject.xpt" Name="COMPAC_1.XPT" Id="CSharpCompactFormsProject.xpt" LongName="CompactFormsProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\ConsoleProject.xpt" Name="CONSOL_1.XPT" Id="CSharpConsoleProject.xpt" LongName="ConsoleProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\ControlLibrary.xpt" Name="CONTRO_1.XPT" Id="CSharpControlLibrary.xpt" LongName="ControlLibrary.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\DefaultAssemblyInfo.cs" Name="DEFAUL_1.CS" Id="CSharpDefaultAssemblyInfo.cs" LongName="DefaultAssemblyInfo.cs" /> |
||||
<File Source="..\..\data\templates\project\CSharp\Direct3DProject.xpt" Name="DIRECT_1.XPT" Id="CSharpDirect3DProject.xpt" LongName="Direct3DProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\EmptyProject.xpt" Name="EMPTYP_1.XPT" Id="CSharpEmptyProject.xpt" LongName="EmptyProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\FormsProject.xpt" Name="FORMSP_1.XPT" Id="CSharpFormsProject.xpt" LongName="FormsProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\GladeProject.xpt" Name="GLADEP_1.XPT" Id="GladeProject.xpt" LongName="GladeProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\GtkProject.xpt" Name="GTKPRO_1.XPT" Id="CSharpGtkProject.xpt" LongName="GtkProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\Library.xpt" Name="Library.xpt" Id="CSharpLibrary.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\ProjectCategorySortOrder.xml" Name="PROJEC_1.XML" Id="CSharpProjectCategorySortOrder.xml" LongName="ProjectCategorySortOrder.xml" /> |
||||
<File Source="..\..\data\templates\project\CSharp\Service.xpt" Name="Service.xpt" Id="CSharpService.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\SharedAddin.xpt" Name="SHARED_1.XPT" Id="CSharpSharedAddin.xpt" LongName="SharedAddin.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\SharpDevelopAddin.xpt" Name="SHARPD_1.XPT" Id="CSharpSharpDevelopAddin.xpt" LongName="SharpDevelopAddin.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\SharpDevelopMacro.xpt" Name="SHARPD_2.XPT" Id="CSharpSharpDevelopMacro.xpt" LongName="SharpDevelopMacro.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\WebpageProject.xpt" Name="WEBPAG_1.XPT" Id="CSharpWebpageProject.xpt" LongName="WebpageProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\CSharp\WPFApplication.xpt" Name="WPFAPP_1.XPT" Id="CSharpWPFApplication.xpt" LongName="WPFApplication.xpt" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="MiscProjectTemplatesFolder" Name="Misc"> |
||||
<Component Guid="F9A7F832-6EC8-4B15-A037-146BD028C9D5" Id="MiscProjectTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\project\Misc\BlankCombine.xpt" Name="BLANKC_1.XPT" Id="BlankCombine.xpt" LongName="BlankCombine.xpt" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="VBNetProjectTemplatesFolder" Name="VBNet"> |
||||
<Component Guid="A1AC7093-AD88-4125-9D40-16ED5D9D358F" Id="VBNetProjectTemplates" DiskId="1"> |
||||
<File Source="..\..\data\templates\project\VBNet\SharpDevelopMacro.xpt" Name="SHARPD_3.XPT" Id="VBNetSharpDevelopMacro.xpt" LongName="SharpDevelopMacro.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\ConsoleProject.xpt" Name="CONSOL_1.XPT" Id="VBNetConsoleProject.xpt" LongName="ConsoleProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\ControlLibrary.xpt" Name="CONTRO_1.XPT" Id="VBNetControlLibrary.xpt" LongName="ControlLibrary.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\DefaultAssemblyInfo.vb" Name="DEFAUL_1.VB" Id="VBNetDefaultAssemblyInfo.vb" LongName="DefaultAssemblyInfo.vb" /> |
||||
<File Source="..\..\data\templates\project\VBNet\Direct3DProject.xpt" Name="DIRECT_1.XPT" Id="VBNetDirect3DProject.xpt" LongName="Direct3DProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\EmptyProject.xpt" Name="EMPTYP_1.XPT" Id="VBNetEmptyProject.xpt" LongName="EmptyProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\FormsProject.xpt" Name="FORMSP_1.XPT" Id="VBNetFormsProject.xpt" LongName="FormsProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\GtkProject.xpt" Name="GTKPRO_1.XPT" Id="VBNetGtkProject.xpt" LongName="GtkProject.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\Library.xpt" Name="Library.xpt" Id="VBNetLibrary.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\ProjectCategorySortOrder.xml" Name="PROJEC_1.XML" Id="VBNetProjectCategorySortOrder.xml" LongName="ProjectCategorySortOrder.xml" /> |
||||
<File Source="..\..\data\templates\project\VBNet\Service.xpt" Name="Service.xpt" Id="VBNetService.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\SharedAddin.xpt" Name="SHARED_1.XPT" Id="VBNetSharedAddin.xpt" LongName="SharedAddin.xpt" /> |
||||
<File Source="..\..\data\templates\project\VBNet\SharpDevelopAddin.xpt" Name="SHARPD_4.XPT" Id="VBNetSharpDevelopAddin.xpt" LongName="SharpDevelopAddin.xpt" /> |
||||
</Component> |
||||
</Directory> |
||||
<Component Guid="73EAC135-57B6-46C0-9F24-70A347B9AAC8" Id="ExampleProjectTemplate" DiskId="1"> |
||||
<File Source="..\..\data\templates\project\ComplexExample.xpt.test" Name="COMPLE_1.TES" Id="ComplexExample.xpt.test" LongName="ComplexExample.xpt.test" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="RootAddInsFolder" Name="AddIns"> |
||||
<Component Guid="BD536EB3-6629-4699-9083-673B6175E044" Id="ICSharpCode.SharpDevelop.addin" DiskId="1"> |
||||
<File Source="..\..\AddIns\ICSharpCode.SharpDevelop.addin" Name="ICSHAR_1.ADD" Id="ICSharpCode.SharpDevelop.addin" LongName="ICSharpCode.SharpDevelop.addin" /> |
||||
</Component> |
||||
<Directory Id="AddInsFolder" Name="AddIns"> |
||||
<Directory Id="BackendBindingsFolder" LongName="BackendBindings" Name="bindings"> |
||||
<Directory Id="BooBindingFolder" LongName="BooBinding" Name="Boo"> |
||||
<Directory Id="BooTemplatesFolder" LongName="Templates" Name="Template"> |
||||
<Component Guid="3895056C-83A1-4EFA-9F57-1F9665D48246" Id="BooTemplateFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\Library.xpt" Name="Library.xpt" Id="Library.xpt" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\ConsoleProject.xpt" Name="CONSOL_1.XPT" Id="BooConsoleProject.xpt" LongName="ConsoleProject.xpt" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\DefaultAssemblyInfo.boo" Name="DEFAUL_1.BOO" Id="DefaultAssemblyInfo.boo" LongName="DefaultAssemblyInfo.boo" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\Empty.xft" Name="Empty.xft" Id="Empty.xft" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\EmptyClass.xft" Name="EMPTYC_1.XFT" Id="EmptyClass.xft" LongName="EmptyClass.xft" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\Form.xft" Name="Form.xft" Id="Form.xft" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Templates\FormsProject.xpt" Name="FORMSP_1.XPT" Id="FormsProject.xpt" LongName="FormsProject.xpt" /> |
||||
</Component> |
||||
</Directory> |
||||
<Component Guid="208A468E-646B-4A34-A066-97DA55008ED4" Id="BooBindingFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Interpreter.addin" Name="BOOIN_1.ADD" Id="Boo.Interpreter.addin" LongName="Boo.Interpreter.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.InterpreterAddIn.dll" Name="BOOIN_1.DLL" Id="Boo.InterpreterAddIn.dll" LongName="Boo.InterpreterAddIn.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.CodeDom.dll" Name="BOOLA_1.DLL" Id="Boo.Lang.CodeDom.dll" LongName="Boo.Lang.CodeDom.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Compiler.dll" Name="BOOLA_2.DLL" Id="Boo.Lang.Compiler.dll" LongName="Boo.Lang.Compiler.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.dll" Name="BooLang.dll" LongName="Boo.Lang.dll" Id="Boo.Lang.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Interpreter.dll" Name="BOOLA_3.DLL" Id="Boo.Lang.Interpreter.dll" LongName="Boo.Lang.Interpreter.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Parser.dll" Name="BOOLA_4.DLL" Id="Boo.Lang.Parser.dll" LongName="Boo.Lang.Parser.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Lang.Useful.dll" Name="BOOLA_5.DLL" Id="Boo.Lang.Useful.dll" LongName="Boo.Lang.Useful.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.targets" Name="BOOMI_1.TAR" Id="Boo.Microsoft.Build.targets" LongName="Boo.Microsoft.Build.targets" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\Boo.Microsoft.Build.Tasks.dll" Name="BOOMI_1.DLL" Id="Boo.Microsoft.Build.Tasks.dll" LongName="Boo.Microsoft.Build.Tasks.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\BooBinding.addin" Name="BOOBIN_1.ADD" Id="BooBinding.addin" LongName="BooBinding.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\BooBinding.dll" Name="BOOBIN_1.DLL" Id="BooBinding.dll" LongName="BooBinding.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\booc.exe" Name="booc.exe" Id="booc.exe" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\booc.exe.config" Name="BOOCEXE.CON" Id="booc.exe.config" LongName="booc.exe.config" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\booc.rsp" Name="booc.rsp" Id="booc.rsp" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\BooBinding\NRefactoryToBooConverter.dll" Name="NREFAC_1.DLL" Id="NRefactoryToBooConverter.dll" LongName="NRefactoryToBooConverter.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="CSharpBindingFolder" LongName="CSharpBinding" Name="CSharp"> |
||||
<Component Guid="1E6F20EC-6BF4-45C0-AE99-319FBF568BD1" Id="CSharpBindingFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\CSharpBinding\CSharpBinding.dll" Name="CSHARP_1.DLL" Id="CSharpBinding.dll" LongName="CSharpBinding.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\CSharpBinding\CSharpBinding.addin" Name="CSHARP_1.ADD" Id="CSharpBinding.addin" LongName="CSharpBinding.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="ILAsmBindingFolder" LongName="ILAsmBinding" Name="ILAsm"> |
||||
<Directory Id="ILAsmTemplatesFolder" LongName="Templates" Name="Template"> |
||||
<Component Guid="D20792CD-4884-4797-A177-C47CCFAB7197" Id="ILAsmTemplates" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\ILAsmBinding\Templates\ConsoleProject.xpt" Name="CONSOL_1.XPT" Id="ILAsmConsoleProject.xpt" LongName="ConsoleProject.xpt" /> |
||||
</Component> |
||||
</Directory> |
||||
<Component Guid="494441F4-63E9-4A3E-82D6-026A966BCD11" Id="ILAsmBindingFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\ILAsmBinding\ILAsmBinding.dll" Name="ILASMB_1.DLL" Id="ILAsmBinding.dll" LongName="ILAsmBinding.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\ILAsmBinding\ILAsmBinding.addin" Name="ILASMB_1.ADD" Id="ILAsmBinding.addin" LongName="ILAsmBinding.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="VBNetBindingFolder" LongName="VBNetBinding" Name="VBNet"> |
||||
<Component Guid="0F51B5A5-517F-40B3-932A-A0A693926E67" Id="VBNetBindingFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\VBNetBinding\VBNetBinding.dll" Name="VBNETB_1.DLL" Id="VBNetBinding.dll" LongName="VBNetBinding.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\VBNetBinding\VBNetBinding.addin" Name="VBNETB_1.ADD" Id="VBNetBinding.addin" LongName="VBNetBinding.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="WixBindingFolder" LongName="WixBinding" Name="Wix"> |
||||
<Component Guid="A54D7821-BBFD-49E9-8FFB-1AB224E25521" Id="WixBindingFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\WixBinding.dll" Name="WIXBIN_1.DLL" Id="WixBinding.dll" LongName="WixBinding.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\SetupDialogControlLibrary.sdcl" Name="SETUPD_1.SDC" Id="SetupDialogControlLibrary.sdcl" LongName="SetupDialogControlLibrary.sdcl" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\WixBinding.addin" Name="WIXBIN_1.ADD" Id="WixBinding.addin" LongName="WixBinding.addin" /> |
||||
</Component> |
||||
<Directory Id="WixBindingTemplatesFolder" LongName="Templates" Name="Template"> |
||||
<Component Guid="80B8EEDB-4CA6-4EA6-B5D2-2BCD95106B78" Id="WixBindingTemplates" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\Templates\WixProject.xpt" Name="WIXPRO_1.XPT" Id="WixProject.xpt" LongName="WixProject.xpt" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\Templates\EmptyWixFile.xft" Name="EMPTYW_1.XFT" Id="EmptyWixFile.xft" LongName="EmptyWixFile.xft" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\Templates\EmptyWixProject.xpt" Name="EMPTYW_1.XPT" Id="EmptyWixProject.xpt" LongName="EmptyWixProject.xpt" /> |
||||
<File Source="..\..\AddIns\AddIns\BackendBindings\WixBinding\Templates\WixDialog.xft" Name="WIXDIA_1.XFT" Id="WixDialog.xft" LongName="WixDialog.xft" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="DisplayBindingsFolder" Name="display" LongName="DisplayBindings"> |
||||
<Directory Id="FormsDesignerFolder" LongName="FormsDesigner" Name="Forms"> |
||||
<Component Guid="14E454AB-8F83-4FB3-9EDE-92B7D5333998" Id="FormsDesignerFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.dll" Name="FORMSD_1.DLL" Id="FormsDesigner.dll" LongName="FormsDesigner.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\FormsDesigner\FormsDesigner.addin" Name="FORMSD_1.ADD" Id="FormsDesigner.addin" LongName="FormsDesigner.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="IconEditorFolder" LongName="IconEditor" Name="IconEd"> |
||||
<Component Guid="A6F985C3-09A5-4650-9A8E-239BBC737B10" Id="IconEditorFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\IconEditor\ICSharpCode.IconEditorAddIn.dll" Name="ICSHAR_2.DLL" Id="ICSharpCode.IconEditorAddIn.dll" LongName="ICSharpCode.IconEditorAddIn.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\IconEditor\IconEditor.exe" Name="ICONED_1.EXE" Id="IconEditor.exe" LongName="IconEditor.exe" /> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\IconEditor\IconEditorAddIn.addin" Name="ICONED_1.ADD" Id="IconEditorAddIn.addin" LongName="IconEditorAddIn.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="ResourceEditorFolder" LongName="ResourceEditor" Name="ResEd"> |
||||
<Component Guid="010A8620-382C-477B-9330-51A8B6C48A7A" Id="ResourceEditorFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.dll" Name="RESOUR_1.DLL" Id="ResourceEditor.dll" LongName="ResourceEditor.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\ResourceEditor\ResourceEditor.addin" Name="RESOUR_1.ADD" Id="ResourceEditor.addin" LongName="ResourceEditor.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="XmlEditorFolder" LongName="XmlEditor" Name="XmlEdit"> |
||||
<Component Guid="BD0B4E5B-CBED-49A0-850C-3EA8DFCF3B17" Id="XmlEditorFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\XmlEditor\XmlEditor.dll" Name="XMLEDI_1.DLL" Id="XmlEditor.dll" LongName="XmlEditor.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\DisplayBindings\XmlEditor\XmlEditor.addin" Name="XMLEDI_1.ADD" Id="XmlEditor.addin" LongName="XmlEditor.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
<Directory Id="MiscAddInsFolder" Name="Misc"> |
||||
<Directory Id="AddInManagerFolder" LongName="AddInManager" Name="AddMan"> |
||||
<Component Guid="DCC79FDD-A759-4CEE-A62E-C715738ABB9A" Id="AddInManagerFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\AddInManager\ICSharpCode.SharpZipLib.dll" Name="ICSHAR_3.DLL" Id="ICSharpCode.SharpZipLib.dll" LongName="ICSharpCode.SharpZipLib.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\AddInManager\AddInManager.addin" Name="ADDINM_1.ADD" Id="AddInManager.addin" LongName="AddInManager.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\AddInManager\ICSharpCode.AddInManager.dll" Name="ICSHAR_4.DLL" Id="ICSharpCode.AddInManager.dll" LongName="ICSharpCode.AddInManager.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="AddInScoutFolder" Name="AddScout" LongName="AddinScout"> |
||||
<Component Guid="815D3708-5A0A-4B8E-BB72-66DF8E851917" Id="AddInScoutFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\AddinScout\AddinScout.dll" Name="ADDINS_1.DLL" Id="AddinScout.dll" LongName="AddinScout.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\AddinScout\AddInScout.addin" Name="ADDINS_1.ADD" Id="AddInScout.addin" LongName="AddInScout.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="CodeAnalysisFolder" LongName="CodeAnalysis" Name="Analysis"> |
||||
<Component Guid="6CF33D51-953D-4E5F-840C-7FDCFD757520" Id="CodeAnalysisFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\CodeAnalysis\CodeAnalysis.dll" Name="CODEAN_1.DLL" Id="CodeAnalysis.dll" LongName="CodeAnalysis.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\CodeAnalysis\CodeAnalysis.addin" Name="CODEAN_1.ADD" Id="CodeAnalysis.addin" LongName="CodeAnalysis.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="ComponentInspectorAddInFolder" LongName="ComponentInspector" Name="CompInsp"> |
||||
<Component Guid="C3CBE9CD-ED60-4B07-9082-D5D31755C388" Id="ComponentInspectorAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\ComponentInspector\ComponentInspector.Core.dll" Name="COMPON_1.DLL" Id="ComponentInspector.Core.dll" LongName="ComponentInspector.Core.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\ComponentInspector\ComponentInspector.addin" Name="COMPON_1.ADD" Id="ComponentInspector.addin" LongName="ComponentInspector.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\ComponentInspector\ComponentInspector.AddIn.dll" Name="COMPON_2.DLL" Id="ComponentInspector.AddIn.dll" LongName="ComponentInspector.AddIn.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="DebuggerFolder" LongName="Debugger" Name="Debug"> |
||||
<Component Guid="3A14B928-3319-429B-8F39-8870431C49CB" Id="DebuggerAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.AddIn.addin" Name="DEBUGG_1.ADD" Id="Debugger.AddIn.addin" LongName="Debugger.AddIn.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.AddIn.dll" Name="DEBUGG_1.DLL" Id="Debugger.AddIn.dll" LongName="Debugger.AddIn.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.BooInterpreter.addin" Name="DEBUGG_2.ADD" Id="Debugger.BooInterpreter.addin" LongName="Debugger.BooInterpreter.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.BooInterpreter.dll" Name="DEBUGG_2.DLL" Id="Debugger.BooInterpreter.dll" LongName="Debugger.BooInterpreter.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Debugger.Core.dll" Name="DEBUGG_3.DLL" Id="Debugger.Core.dll" LongName="Debugger.Core.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\TreeListView.dll" Name="TREELI_1.DLL" Id="TreeListView.dll" LongName="TreeListView.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Boo.Lang.Compiler.dll" Name="BOOLA_2.DLL" Id="Debugger.Boo.Lang.Compiler.dll" LongName="Boo.Lang.Compiler.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\Debugger\Boo.Lang.Interpreter.dll" Name="BOOLA_3.DLL" Id="Debugger.Boo.Lang.Interpreter.dll" LongName="Boo.Lang.Interpreter.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="FiletypeRegistererFolder" LongName="FiletypeRegisterer" Name="Filetype"> |
||||
<Directory Id="FileTypesFolder" LongName="filetypes" Name="filetype"> |
||||
<Component Guid="389BF494-9AE6-476A-A0FE-39DB0CFE95D1" Id="FiletypeIcons" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\xml.ico" Name="xml.ico" Id="xml.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\addin.ico" Name="addin.ico" Id="addin.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\cmbx.ico" Name="cmbx.ico" Id="cmbx.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\cs.ico" Name="cs.ico" Id="cs.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\java.ico" Name="java.ico" Id="java.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\prjx.ico" Name="prjx.ico" Id="prjx.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\resx.ico" Name="resx.ico" Id="resx.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\vb.ico" Name="vb.ico" Id="vb.ico" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\filetypes\xfrm.ico" Name="xfrm.ico" Id="xfrm.ico" /> |
||||
</Component> |
||||
</Directory> |
||||
<Component Guid="6FF1EF46-B5FF-444D-879F-0E56640CABD7" Id="FiletypeRegistererFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\ICSharpCode.FiletypeRegisterer.dll" Name="ICSHAR_1.DLL" Id="ICSharpCode.FiletypeRegisterer.dll" LongName="ICSharpCode.FiletypeRegisterer.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\FiletypeRegisterer\FiletypeRegisterer.addin" Name="FILETY_1.ADD" Id="FiletypeRegisterer.addin" LongName="FiletypeRegisterer.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="HighlightingEditorFolder" LongName="HighlightingEditor" Name="Highlite"> |
||||
<Component Guid="6F792AF7-4622-40DF-8CE3-270D66A7A7EC" Id="HighlightingEditorFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HighlightingEditor\HighlightingEditor.addin" Name="HIGHLI_1.ADD" Id="HighlightingEditor.addin" LongName="HighlightingEditor.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HighlightingEditor\HighlightingEditor.dll" Name="HIGHLI_1.DLL" Id="HighlightingEditor.dll" LongName="HighlightingEditor.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="HtmlHelpFolder" LongName="HtmlHelp2" Name="Help"> |
||||
<Component Guid="C854C30E-1765-4614-8248-F256C761CEE3" Id="HtmlHelp2Files" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\stdole.dll" Name="stdole.dll" Id="stdole.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2.addin" Name="HTMLHE_1.ADD" Id="HtmlHelp2.addin" LongName="HtmlHelp2.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2.dll" Name="HTMLHE_1.DLL" Id="HtmlHelp2.dll" LongName="HtmlHelp2.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2.DynamicHelp.addin" Name="HTMLHE_2.ADD" Id="HtmlHelp2.DynamicHelp.addin" LongName="HtmlHelp2.DynamicHelp.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\HtmlHelp2JScriptGlobals.dll" Name="HTMLHE_2.DLL" Id="HtmlHelp2JScriptGlobals.dll" LongName="HtmlHelp2JScriptGlobals.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\MSHelpControls.dll" Name="MSHELP_1.DLL" Id="MSHelpControls.dll" LongName="MSHelpControls.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\HtmlHelp2\MSHelpServices.dll" Name="MSHELP_2.DLL" Id="MSHelpServices.dll" LongName="MSHelpServices.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="MonoAddInFolder" LongName="MonoAddIn" Name="Mono"> |
||||
<Component Guid="1BF9CC7D-360C-4F48-A407-9CAF86BE85E7" Id="MonoAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\MonoAddIn\MonoAddIn.addin" Name="MONOAD_1.ADD" Id="MonoAddIn.addin" LongName="MonoAddIn.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\MonoAddIn\MonoAddIn.dll" Name="MONOAD_1.DLL" Id="MonoAddIn.dll" LongName="MonoAddIn.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="NAntAddInFolder" LongName="NAntAddIn" Name="NAnt"> |
||||
<Component Guid="36B5B3BF-49CD-4EFA-B749-136F4ECD6492" Id="NAntAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\NAntAddIn\NAnt.addin" Name="NAnt.add" Id="NAnt.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\NAntAddIn\NAntAddIn.dll" Name="NANTAD_1.DLL" Id="NAntAddIn.dll" LongName="NAntAddIn.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="PInvokeAddInFolder" LongName="PInvokeAddIn" Name="PInvoke"> |
||||
<Component Guid="09DC988A-373E-4147-BA35-AF6BF0047B1A" Id="PInvokeAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\PInvokeAddIn\signatures.xml" Name="SIGNAT_1.XML" Id="signatures.xml" LongName="signatures.xml" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\PInvokeAddIn\PInvoke.addin" Name="PINVOKE.ADD" Id="PInvoke.addin" LongName="PInvoke.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\PInvokeAddIn\PInvokeAddIn.dll" Name="PINVOK_1.DLL" Id="PInvokeAddIn.dll" LongName="PInvokeAddIn.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="RegExToolkitFolder" Name="RegExpTk"> |
||||
<Component Guid="B934ABC3-AD9B-4DC3-B0EE-1CA5AF2B8F82" Id="RegExToolkitFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\RegExpTk\RegExpTk.addin" Name="REGEXPTK.ADD" Id="RegExpTk.addin" LongName="RegExpTk.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\RegExpTk\RegExpTk.dll" Name="RegExpTk.dll" Id="RegExpTk.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="SharpDbToolsFolder" LongName="SharpDbTools" Name="SharpDb"> |
||||
<Component Guid="575D909D-CC33-42CE-B0B8-BB2451F73745" Id="SharpDbToolsFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpDbTools\SharpDbTools.addin" Name="SHARPD_1.ADD" Id="SharpDbTools.addin" LongName="SharpDbTools.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpDbTools\SharpDbTools.dll" Name="SHARPD_1.DLL" Id="SharpDbTools.dll" LongName="SharpDbTools.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="SharpQueryFolder" LongName="SharpQuery" Name="Query"> |
||||
<Component Guid="94E2FFCE-B59A-4CB8-90C5-A68FEE705DBA" Id="SharpQueryFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpQuery\SharpQuery.dll" Name="SHARPQ_1.DLL" Id="SharpQuery.dll" LongName="SharpQuery.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpQuery\Interop.MSDASC.dll" Name="INTERO_1.DLL" Id="Interop.MSDASC.dll" LongName="Interop.MSDASC.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpQuery\SharpQuery.addin" Name="SHARPQ_1.ADD" Id="SharpQuery.addin" LongName="SharpQuery.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="SharpReportFolder" LongName="SharpReport" Name="Report"> |
||||
<Component Guid="FCC330AE-1BA6-49AB-8D75-6B056EEBD00D" Id="SharpReportFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpReport\SharpReportCore.dll" Name="SHARPR_1.DLL" Id="SharpReportCore.dll" LongName="SharpReportCore.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpReport\ReportGenerator.addin" Name="REPORT_1.ADD" Id="ReportGenerator.addin" LongName="ReportGenerator.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpReport\ReportGenerator.dll" Name="REPORT_1.DLL" Id="ReportGenerator.dll" LongName="ReportGenerator.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpReport\SharpReport.dll" Name="SHARPR_2.DLL" Id="SharpReport.dll" LongName="SharpReport.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpReport\SharpReportAddin.addin" Name="SHARPR_1.ADD" Id="SharpReportAddin.addin" LongName="SharpReportAddin.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SharpReport\SharpReportAddin.dll" Name="SHARPR_3.DLL" Id="SharpReportAddin.dll" LongName="SharpReportAddin.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="StartPageAddInFolder" LongName="StartPage" Name="StartPg"> |
||||
<Component Guid="220967E5-D5AA-4207-9757-79599222D5CF" Id="StartPageAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\StartPage\StartPage.dll" Name="STARTP_1.DLL" Id="StartPage.dll" LongName="StartPage.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\StartPage\StartPage.addin" Name="STARTP_1.ADD" Id="StartPage.addin" LongName="StartPage.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="SubversionAddInFolder" LongName="SubversionAddIn" Name="Svn"> |
||||
<Component Guid="C9B1D523-5674-4398-9073-20F57B45DD46" Id="SubversionAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\Utils.dll" Name="Utils.dll" Id="Utils.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\ICSharpCode.Svn.addin" Name="ICSHAR_1.ADD" Id="ICSharpCode.Svn.addin" LongName="ICSharpCode.Svn.addin" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LIBAPR.DLL" Name="LIBAPR.DLL" Id="LIBAPR.DLL" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LibAprIconv.Dll" Name="LIBAPR_1.DLL" Id="LibAprIconv.Dll" LongName="LibAprIconv.Dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LibAprUtil.Dll" Name="LIBAPR_2.DLL" Id="LibAprUtil.Dll" LongName="LibAprUtil.Dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\LibDB42.dll" Name="LibDB42.dll" Id="LibDB42.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\msvcp70.dll" Name="msvcp70.dll" Id="msvcp70.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\msvcr70.dll" Name="msvcr70.dll" Id="msvcr70.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\NSvn.Common.dll" Name="NSVNC_1.DLL" Id="NSvn.Common.dll" LongName="NSvn.Common.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\NSvn.Core.dll" Name="NSVNC_2.DLL" Id="NSvn.Core.dll" LongName="NSvn.Core.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\SubversionAddin\SubversionAddIn.dll" Name="SUBVER_1.DLL" Id="SubversionAddIn.dll" LongName="SubversionAddIn.dll" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="UnitTestingFolder" LongName="UnitTesting" Name="UnitTest"> |
||||
<Component Guid="F2F7F12D-1920-49BC-86B0-65B5A1B76516" Id="UnitTestingAddInFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\UnitTesting\UnitTesting.dll" Name="unittest.DLL" Id="UnitTesting.dll" LongName="UnitTesting.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\UnitTesting\UnitTesting.addin" Name="unittest.ADD" Id="UnitTesting.addin" LongName="UnitTesting.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
<Directory Id="CodeCoverageFolder" LongName="CodeCoverage" Name="Cover"> |
||||
<Component Guid="86A8B8D1-9FFD-46A4-84F8-2BD530E1F83E" Id="CodeCoverageFiles" DiskId="1"> |
||||
<File Source="..\..\AddIns\AddIns\Misc\CodeCoverage\CodeCoverage.dll" Name="ccover.dll" Id="CodeCoverage.dll" LongName="CodeCoverage.dll" /> |
||||
<File Source="..\..\AddIns\AddIns\Misc\CodeCoverage\CodeCoverage.addin" Name="ccover.add" Id="CodeCoverage.addin" LongName="CodeCoverage.addin" /> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
<Component Guid="5212F79E-568F-426D-AFD2-FC93914D5CE9" Id="SharpDevelopWebsiteShortcut" DiskId="1"> |
||||
<!-- |
||||
The choice here is to either use 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. |
||||
--> |
||||
<IniFile Id="SharpDevelop.url" Key="URL" Action="addLine" Directory="INSTALLDIR" LongName="SharpDevelop.url" Name="SharpDev.url" Value="http://www.icsharpcode.net/opensource/sd/" Section="InternetShortcut" /> |
||||
<!-- |
||||
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> |
||||
<Registry Id="SharpDevelopAppPathRegistryKey" Key="Software\Microsoft\Windows\CurrentVersion\App Paths\SharpDevelop.exe" Root="HKLM" Value="[!SharpDevelop.exe]" Type="string" Action="write"/> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
</Directory> |
||||
<!-- SharpDevelop Start menu folder --> |
||||
<Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs"> |
||||
<Directory Id="SharpDevelopProgramMenuFolder" Name="SharpDev" LongName="SharpDevelop 2.1"> |
||||
<Component Id="SharpDevelopProgramMenuItems" Guid="AB3D8418-BD70-4EB8-8659-8ED3CEC83FEC"> |
||||
<!-- |
||||
Fix ICE 38 by adding a dummy registry key that is the key for this shortcut. |
||||
http://msdn.microsoft.com/library/en-us/msi/setup/ice38.asp |
||||
--> |
||||
<Registry Id="SharpDevelopExeStartMenuShortcutRegistryKey" Root="HKCU" KeyPath="yes" Key="Software\SharpDevelop2"/> |
||||
<Shortcut Name="SharpDev" LongName="SharpDevelop" Target="[!SharpDevelop.exe]" Id="SharpDevelopExeStartMenuShortcut" WorkingDirectory="BinFolder" Icon="SharpDevelopIcon.exe" Directory="SharpDevelopProgramMenuFolder" /> |
||||
<IniFile Action="addLine" Directory="SharpDevelopProgramMenuFolder" Id="Website" Key="URL" Name="Website.url" Section="InternetShortcut" Value="http://www.icsharpcode.net/opensource/sd/" /> |
||||
<!-- |
||||
Fix ICE64 by adding a remove folder element |
||||
http://windowssdk.msdn.microsoft.com/en-us/library/ms704358.aspx |
||||
--> |
||||
<RemoveFolder Id="RemoveSharpDevelopProgramMenuFolder" On="uninstall"/> |
||||
</Component> |
||||
</Directory> |
||||
</Directory> |
||||
<!-- Desktop shortcuts --> |
||||
<Directory Id="DesktopFolder" Name="Desktop"> |
||||
<Component Id="DesktopFolderItems" Guid="0B7F764F-19C0-401A-889E-3A9E482CA234"> |
||||
<!-- |
||||
Fix ICE 38 by adding a dummy registry key that is the key for this shortcut. |
||||
http://msdn.microsoft.com/library/en-us/msi/setup/ice38.asp |
||||
--> |
||||
<Registry Id="SharpDevelopExeDesktopShortcutRegistryKey" Root="HKCU" KeyPath="yes" Key="Software\SharpDevelop2"/> |
||||
<Shortcut Id="SharpDevelopExeDesktopShortcut" Directory="DesktopFolder" Target="[!SharpDevelop.exe]" Name="SharpDev" LongName="SharpDevelop 2.1" Icon="SharpDevelopIcon.exe" WorkingDirectory="BinFolder" /> |
||||
</Component> |
||||
</Directory> |
||||
</DirectoryRef> |
||||
</Fragment> |
||||
</Wix> |