Browse Source

Added a new Wix based installer for SharpDevelop. Improved performance of Wix files tree view, it now only adds child nodes when a node is expanded. Short filename generator now uses underscore instead of the tilde character preventing candle compilation warnings. User friendly names displayed in Wix files tree view for special folders (e.g. Program Files).

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1717 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
0002cc0d9c
  1. 1
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDirectoryTreeNode.cs
  2. 86
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesTreeView.cs
  3. 32
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNode.cs
  4. 73
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNodeBuilder.cs
  5. 7
      src/AddIns/BackendBindings/WixBinding/Project/Src/ShortFileName.cs
  6. 93
      src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElement.cs
  7. 1
      src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj
  8. 20
      src/AddIns/BackendBindings/WixBinding/Test/Document/ChildDirectoriesTestFixture.cs
  9. 155
      src/AddIns/BackendBindings/WixBinding/Test/Document/DirectoryNameTests.cs
  10. 2
      src/AddIns/BackendBindings/WixBinding/Test/PackageFiles/AddFilesTestFixture.cs
  11. 8
      src/AddIns/BackendBindings/WixBinding/Test/PackageFiles/ShortFileNameGeneratorTests.cs
  12. 1
      src/AddIns/BackendBindings/WixBinding/Test/WixBinding.Tests.csproj
  13. BIN
      src/Setup/Bitmaps/dlgbmp.bmp
  14. 941
      src/Setup/Files.wxs
  15. 461
      src/Setup/License.rtf
  16. 70
      src/Setup/NetFxExtension.wxs
  17. 192
      src/Setup/Setup.wxs
  18. 16
      src/Setup/SharpDevelop.Setup.sln
  19. 42
      src/Setup/SharpDevelop.Setup.wixproj
  20. 3
      src/Setup/buildSetup.bat
  21. 2
      src/Tools/Tools.build

1
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDirectoryTreeNode.cs

@ -21,6 +21,7 @@ namespace ICSharpCode.WixBinding @@ -21,6 +21,7 @@ namespace ICSharpCode.WixBinding
ContextmenuAddinTreePath = "/AddIns/WixBinding/PackageFilesView/ContextMenu/DirectoryTreeNode";
SetIcon(closedImage);
Refresh();
sortOrder = 0;
}
public override void Refresh()

86
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesTreeView.cs

@ -80,9 +80,8 @@ namespace ICSharpCode.WixBinding @@ -80,9 +80,8 @@ namespace ICSharpCode.WixBinding
public void AddDirectories(WixDirectoryElement[] directories)
{
foreach (WixDirectoryElement directory in directories) {
AddNode(null, directory);
WixTreeNodeBuilder.AddNode(this, directory);
}
ExpandAll();
}
/// <summary>
@ -103,9 +102,17 @@ namespace ICSharpCode.WixBinding @@ -103,9 +102,17 @@ namespace ICSharpCode.WixBinding
/// root node.</remarks>
public void AddElement(XmlElement element)
{
ExtTreeNode selectedNode = (ExtTreeNode)SelectedNode;
ExtTreeNode addedNode = AddNode(selectedNode, element);
addedNode.Expand();
WixTreeNode selectedNode = (WixTreeNode)SelectedNode;
if (selectedNode == null) {
WixTreeNodeBuilder.AddNode(this, element);
} else {
if (selectedNode.IsInitialized) {
WixTreeNodeBuilder.AddNode(selectedNode, element);
} else {
// Initializing the node will add all the child elements.
selectedNode.PerformInitialization();
}
}
}
/// <summary>
@ -144,52 +151,7 @@ namespace ICSharpCode.WixBinding @@ -144,52 +151,7 @@ namespace ICSharpCode.WixBinding
OnSelectedElementChanged();
}
}
/// <summary>
/// Adds a new tree node containing the xml element to the specified
/// nodes collection.
/// </summary>
ExtTreeNode AddNode(ExtTreeNode parentNode, XmlElement element)
{
ExtTreeNode node = CreateNode(element);
if (parentNode != null) {
node.AddTo(parentNode);
} else {
node.AddTo(this);
}
AddNodes(node, element.ChildNodes);
return node;
}
/// <summary>
/// Adds all the elements.
/// </summary>
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>
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);
}
void OnSelectedElementChanged()
{
if (SelectedElementChanged != null) {
@ -208,15 +170,23 @@ namespace ICSharpCode.WixBinding @@ -208,15 +170,23 @@ namespace ICSharpCode.WixBinding
/// <summary>
/// Finds the node that represents the specified xml element.
/// </summary>
/// <remarks>
/// This currently looks in nodes that have been opened. Really it
/// should explore the entire tree, but child nodes are only added if the
/// node is expanded.
/// </remarks>
WixTreeNode FindNode(TreeNodeCollection nodes, XmlElement element)
{
foreach (WixTreeNode node in nodes) {
if (NodeHasElement(node, element)) {
return node;
} else {
WixTreeNode foundNode = FindNode(node.Nodes, element);
if (foundNode != null) {
return foundNode;
foreach (ExtTreeNode node in nodes) {
WixTreeNode wixTreeNode = node as WixTreeNode;
if (wixTreeNode != null) {
if (NodeHasElement(wixTreeNode, element)) {
return wixTreeNode;
} else {
WixTreeNode foundNode = FindNode(wixTreeNode.Nodes, element);
if (foundNode != null) {
return foundNode;
}
}
}
}

32
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNode.cs

@ -19,10 +19,17 @@ namespace ICSharpCode.WixBinding @@ -19,10 +19,17 @@ namespace ICSharpCode.WixBinding
public class WixTreeNode : ExtTreeNode, IOwnerState
{
XmlElement element;
ExtTreeNode dummyChildNode = null;
public WixTreeNode(XmlElement element)
{
this.element = element;
sortOrder = 10;
if (element.HasChildNodes) {
dummyChildNode = new ExtTreeNode();
dummyChildNode.AddTo(this);
}
}
public Enum InternalState {
@ -31,6 +38,16 @@ namespace ICSharpCode.WixBinding @@ -31,6 +38,16 @@ namespace ICSharpCode.WixBinding
}
}
/// <summary>
/// Gets whether this tree node has been initialized. If it has been
/// initialized then all the child nodes have been added to this node.
/// </summary>
public bool IsInitialized {
get {
return isInitialized;
}
}
/// <summary>
/// Can delete all Wix tree nodes.
/// </summary>
@ -60,5 +77,20 @@ namespace ICSharpCode.WixBinding @@ -60,5 +77,20 @@ namespace ICSharpCode.WixBinding
return (WixPackageFilesTreeView)TreeView;
}
}
/// <summary>
/// Adds child nodes to this tree node.
/// </summary>
protected override void Initialize()
{
base.Initialize();
if (dummyChildNode != null) {
Nodes.Remove(dummyChildNode);
dummyChildNode = null;
}
WixTreeNodeBuilder.AddNodes(this, element.ChildNodes);
}
}
}

73
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNodeBuilder.cs

@ -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);
}
}
}

7
src/AddIns/BackendBindings/WixBinding/Project/Src/ShortFileName.cs

@ -14,13 +14,14 @@ namespace ICSharpCode.WixBinding @@ -14,13 +14,14 @@ namespace ICSharpCode.WixBinding
/// <summary>
/// Utility class that converts from long filenames to DOS 8.3 filenames based on the
/// rough algorithm outlined here: http://support.microsoft.com/kb/142982/EN-US/
/// apart from using an underscore instead of a '~'.
/// </summary>
public sealed class ShortFileName
{
const int MaximumFileNameWithoutExtensionLength = 8;
/// <summary>
/// The filename length to use when appending "~1" to it.
/// The filename length to use when appending "_1" to it.
/// </summary>
const int FileNameWithoutExtensionTruncatedLength = 6;
@ -97,7 +98,7 @@ namespace ICSharpCode.WixBinding @@ -97,7 +98,7 @@ namespace ICSharpCode.WixBinding
}
/// <summary>
/// Truncates the filename start and adds "~N" where N produces a filename that
/// Truncates the filename start and adds "_N" where N produces a filename that
/// does not exist.
/// </summary>
static string GetTruncatedFileName(string fileNameStart, string extension, FileNameExists getFileNameExists)
@ -112,7 +113,7 @@ namespace ICSharpCode.WixBinding @@ -112,7 +113,7 @@ namespace ICSharpCode.WixBinding
fileNameStart = fileNameStart.Substring(0, fileNameStart.Length - 1);
divisor *= divisor;
}
truncatedFileName = String.Concat(fileNameStart, "~", count.ToString(), extension).ToUpperInvariant();
truncatedFileName = String.Concat(fileNameStart, "_", count.ToString(), extension).ToUpperInvariant();
} while (getFileNameExists(truncatedFileName));
return truncatedFileName;

93
src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElement.cs

@ -67,8 +67,17 @@ namespace ICSharpCode.WixBinding @@ -67,8 +67,17 @@ namespace ICSharpCode.WixBinding
SetAttribute("SourceName", value);
}
}
public string DirectoryName {
public string LongName {
get {
return GetAttribute("LongName");
}
set {
SetAttribute("LongName", value);
}
}
public string ShortName {
get {
return GetAttribute("Name");
}
@ -76,5 +85,85 @@ namespace ICSharpCode.WixBinding @@ -76,5 +85,85 @@ namespace ICSharpCode.WixBinding
SetAttribute("Name", value);
}
}
/// <summary>
/// Gets the directory name.
/// </summary>
/// <returns>
/// Returns the long name if defined, otherwise the name. If the directory Id
/// is a special case (e.g. "ProgramFilesFolder") it returns this id slightly
/// modified (e.g. "Program Files").
/// </returns>
public string DirectoryName {
get {
string name = GetSystemDirectory(Id);
if (name != null) {
return name;
}
name = LongName;
if (name.Length > 0) {
return name;
}
return ShortName;
}
}
/// <summary>
/// Returns whether the specified name maps to a system directory.
/// </summary>
public static string GetSystemDirectory(string id)
{
switch (id) {
case "ProgramFilesFolder":
return "Program Files";
case "AdminToolsFolder":
return "Admin Tools";
case "AppDataFolder":
return "App Data";
case "CommonAppDataFolder":
return "Common App Data";
case "CommonFiles64Folder":
return "Common Files 64";
case "CommonFilesFolder":
return "Common Files";
case "DesktopFolder":
return "Desktop";
case "FavoritesFolder":
return "Favorites";
case "FontsFolder":
return "Fonts";
case "LocalAppDataFolder":
return "Local App Data";
case "MyPicturesFolder":
return "My Pictures";
case "PersonalFolder":
return "Personal";
case "ProgramFiles64Folder":
return "Program Files 64";
case "ProgramMenuFolder":
return "Program Menu";
case "SendToFolder":
return "Send To";
case "StartMenuFolder":
return "Start Menu";
case "StartupFolder":
return "Startup";
case "System16Folder":
return "System 16";
case "System64Folder":
return "System 64";
case "SystemFolder":
return "System";
case "TempFolder":
return "Temp";
case "TemplateFolder":
return "Templates";
case "WindowsFolder":
return "Windows";
case "WindowsVolume":
return "Windows Volume";
}
return null;
}
}
}

1
src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj

@ -126,6 +126,7 @@ @@ -126,6 +126,7 @@
<Compile Include="Src\WixDirectoryElementBase.cs" />
<Compile Include="Src\WixBinaries.cs" />
<Compile Include="Src\WixBinaryElement.cs" />
<Compile Include="Src\Gui\WixTreeNodeBuilder.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="WixBinding.addin">

20
src/AddIns/BackendBindings/WixBinding/Test/Document/ChildDirectoriesTestFixture.cs

@ -57,6 +57,12 @@ namespace WixBinding.Tests.Document @@ -57,6 +57,12 @@ namespace WixBinding.Tests.Document
{
Assert.AreEqual("MyAppSrc", myAppDirectory.SourceName);
}
[Test]
public void MyAppDirectoryName()
{
Assert.AreEqual("My Application", myAppDirectory.DirectoryName);
}
[Test]
public void ProgramFilesDirectoryHasOneChildDirectory()
@ -70,10 +76,16 @@ namespace WixBinding.Tests.Document @@ -70,10 +76,16 @@ namespace WixBinding.Tests.Document
Assert.AreEqual("Test", testDirectory.Id);
}
[Test]
public void TestDirectoryName()
{
Assert.AreEqual("App", testDirectory.DirectoryName);
}
[Test]
public void ProgramFilesDirectoryName()
{
Assert.AreEqual("PFiles", programFilesDirectory.DirectoryName);
Assert.AreEqual("Program Files", programFilesDirectory.DirectoryName);
}
string GetWixXml()
@ -86,11 +98,11 @@ namespace WixBinding.Tests.Document @@ -86,11 +98,11 @@ namespace WixBinding.Tests.Document
"\t Id='????????-????-????-????-????????????'>\r\n" +
"\t\t<Package/>\r\n" +
"\t\t<Directory Id=\"TARGETDIR\" SourceName=\"SourceDir\">\r\n" +
"\t\t\t<Directory Id=\"ProgramFiles\" Name=\"PFiles\">\r\n" +
"\t\t\t\t<Directory Id=\"MyApp\" SourceName=\"MyAppSrc\">\r\n" +
"\t\t\t<Directory Id=\"ProgramFilesFolder\" Name=\"PFiles\">\r\n" +
"\t\t\t\t<Directory Id=\"MyApp\" SourceName=\"MyAppSrc\" Name=\"MyApp\" LongName=\"My Application\">\r\n" +
"\t\t\t\t</Directory>\r\n" +
"\t\t\t</Directory>\r\n" +
"\t\t\t<Directory Id=\"Test\" SourceName=\"Test\"/>\r\n" +
"\t\t\t<Directory Id=\"Test\" SourceName=\"Test\" Name=\"App\"/>\r\n" +
"\t\t</Directory>\r\n" +
"\t</Product>\r\n" +
"</Wix>";

155
src/AddIns/BackendBindings/WixBinding/Test/Document/DirectoryNameTests.cs

@ -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"));
}
}
}

2
src/AddIns/BackendBindings/WixBinding/Test/PackageFiles/AddFilesTestFixture.cs

@ -82,7 +82,7 @@ namespace WixBinding.Tests.PackageFiles @@ -82,7 +82,7 @@ namespace WixBinding.Tests.PackageFiles
[Test]
public void ExeFileShortName()
{
Assert.AreEqual("TESTAP~1.EXE", exeFileElement.GetAttribute("Name"));
Assert.AreEqual("TESTAP_1.EXE", exeFileElement.GetAttribute("Name"));
}
[Test]

8
src/AddIns/BackendBindings/WixBinding/Test/PackageFiles/ShortFileNameGeneratorTests.cs

@ -57,7 +57,7 @@ namespace WixBinding.Tests.PackageFiles @@ -57,7 +57,7 @@ namespace WixBinding.Tests.PackageFiles
public void FileNameTooLong()
{
string name = "abcdefgh0.txt";
Assert.AreEqual("ABCDEF~1.TXT", ShortFileName.Convert(name));
Assert.AreEqual("ABCDEF_1.TXT", ShortFileName.Convert(name));
}
[Test]
@ -72,7 +72,7 @@ namespace WixBinding.Tests.PackageFiles @@ -72,7 +72,7 @@ namespace WixBinding.Tests.PackageFiles
{
string name = "abcdefghij.txt";
returnFileNameExistsCount = 1;
Assert.AreEqual("ABCDEF~2.TXT", ShortFileName.Convert(name, GetFileNameExists));
Assert.AreEqual("ABCDEF_2.TXT", ShortFileName.Convert(name, GetFileNameExists));
}
[Test]
@ -80,7 +80,7 @@ namespace WixBinding.Tests.PackageFiles @@ -80,7 +80,7 @@ namespace WixBinding.Tests.PackageFiles
{
string name = "abcdefghij.txt";
returnFileNameExistsCount = 9;
Assert.AreEqual("ABCDE~10.TXT", ShortFileName.Convert(name, GetFileNameExists));
Assert.AreEqual("ABCDE_10.TXT", ShortFileName.Convert(name, GetFileNameExists));
}
[Test]
@ -88,7 +88,7 @@ namespace WixBinding.Tests.PackageFiles @@ -88,7 +88,7 @@ namespace WixBinding.Tests.PackageFiles
{
string name = "abcdefghij.txt";
returnFileNameExistsCount = 99;
Assert.AreEqual("ABCD~100.TXT", ShortFileName.Convert(name, GetFileNameExists));
Assert.AreEqual("ABCD_100.TXT", ShortFileName.Convert(name, GetFileNameExists));
}

1
src/AddIns/BackendBindings/WixBinding/Test/WixBinding.Tests.csproj

@ -186,6 +186,7 @@ @@ -186,6 +186,7 @@
<Compile Include="PackageFiles\AddDirectoryToDirectoryRefTestFixture.cs" />
<Compile Include="Document\GetBinaryFileNameFromProjectTestFixture.cs" />
<Compile Include="DialogLoading\BitmapFromProjectTestFixture.cs" />
<Compile Include="Document\DirectoryNameTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Project\WixBinding.csproj">

BIN
src/Setup/Bitmaps/dlgbmp.bmp

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 KiB

941
src/Setup/Files.wxs

@ -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>

461
src/Setup/License.rtf

@ -0,0 +1,461 @@ @@ -0,0 +1,461 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\f0\fs20\tab\tab GNU LESSER GENERAL PUBLIC LICENSE\par
\tab\tab Version 2.1, February 1999\par
\par
Copyright (C) 1991, 1999 Free Software Foundation, Inc.\par
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\par
Everyone is permitted to copy and distribute verbatim copies\par
of this license document, but changing it is not allowed.\par
\par
[This is the first released version of the Lesser GPL. It also counts\par
as the successor of the GNU Library Public License, version 2, hence\par
the version number 2.1.]\par
\par
\tab\tab\tab Preamble\par
\par
The licenses for most software are designed to take away your\par
freedom to share and change it. By contrast, the GNU General Public\par
Licenses are intended to guarantee your freedom to share and change\par
free software--to make sure the software is free for all its users.\par
\par
This license, the Lesser General Public License, applies to some\par
specially designated software packages--typically libraries--of the\par
Free Software Foundation and other authors who decide to use it. You\par
can use it too, but we suggest you first think carefully about whether\par
this license or the ordinary General Public License is the better\par
strategy to use in any particular case, based on the explanations below.\par
\par
When we speak of free software, we are referring to freedom of use,\par
not price. Our General Public Licenses are designed to make sure that\par
you have the freedom to distribute copies of free software (and charge\par
for this service if you wish); that you receive source code or can get\par
it if you want it; that you can change the software and use pieces of\par
it in new free programs; and that you are informed that you can do\par
these things.\par
\par
To protect your rights, we need to make restrictions that forbid\par
distributors to deny you these rights or to ask you to surrender these\par
rights. These restrictions translate to certain responsibilities for\par
you if you distribute copies of the library or if you modify it.\par
\par
For example, if you distribute copies of the library, whether gratis\par
or for a fee, you must give the recipients all the rights that we gave\par
you. You must make sure that they, too, receive or can get the source\par
code. If you link other code with the library, you must provide\par
complete object files to the recipients, so that they can relink them\par
with the library after making changes to the library and recompiling\par
it. And you must show them these terms so they know their rights.\par
\par
We protect your rights with a two-step method: (1) we copyright the\par
library, and (2) we offer you this license, which gives you legal\par
permission to copy, distribute and/or modify the library.\par
\par
To protect each distributor, we want to make it very clear that\par
there is no warranty for the free library. Also, if the library is\par
modified by someone else and passed on, the recipients should know\par
that what they have is not the original version, so that the original\par
author's reputation will not be affected by problems that might be\par
introduced by others.\par
\par
Finally, software patents pose a constant threat to the existence of\par
any free program. We wish to make sure that a company cannot\par
effectively restrict the users of a free program by obtaining a\par
restrictive license from a patent holder. Therefore, we insist that\par
any patent license obtained for a version of the library must be\par
consistent with the full freedom of use specified in this license.\par
\par
Most GNU software, including some libraries, is covered by the\par
ordinary GNU General Public License. This license, the GNU Lesser\par
General Public License, applies to certain designated libraries, and\par
is quite different from the ordinary General Public License. We use\par
this license for certain libraries in order to permit linking those\par
libraries into non-free programs.\par
\par
When a program is linked with a library, whether statically or using\par
a shared library, the combination of the two is legally speaking a\par
combined work, a derivative of the original library. The ordinary\par
General Public License therefore permits such linking only if the\par
entire combination fits its criteria of freedom. The Lesser General\par
Public License permits more lax criteria for linking other code with\par
the library.\par
\par
We call this license the "Lesser" General Public License because it\par
does Less to protect the user's freedom than the ordinary General\par
Public License. It also provides other free software developers Less\par
of an advantage over competing non-free programs. These disadvantages\par
are the reason we use the ordinary General Public License for many\par
libraries. However, the Lesser license provides advantages in certain\par
special circumstances.\par
\par
For example, on rare occasions, there may be a special need to\par
encourage the widest possible use of a certain library, so that it becomes\par
a de-facto standard. To achieve this, non-free programs must be\par
allowed to use the library. A more frequent case is that a free\par
library does the same job as widely used non-free libraries. In this\par
case, there is little to gain by limiting the free library to free\par
software only, so we use the Lesser General Public License.\par
\par
In other cases, permission to use a particular library in non-free\par
programs enables a greater number of people to use a large body of\par
free software. For example, permission to use the GNU C Library in\par
non-free programs enables many more people to use the whole GNU\par
operating system, as well as its variant, the GNU/Linux operating\par
system.\par
\par
Although the Lesser General Public License is Less protective of the\par
users' freedom, it does ensure that the user of a program that is\par
linked with the Library has the freedom and the wherewithal to run\par
that program using a modified version of the Library.\par
\par
The precise terms and conditions for copying, distribution and\par
modification follow. Pay close attention to the difference between a\par
"work based on the library" and a "work that uses the library". The\par
former contains code derived from the library, whereas the latter must\par
be combined with the library in order to run.\par
\par
\tab\tab GNU LESSER GENERAL PUBLIC LICENSE\par
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\par
\par
0. This License Agreement applies to any software library or other\par
program which contains a notice placed by the copyright holder or\par
other authorized party saying it may be distributed under the terms of\par
this Lesser General Public License (also called "this License").\par
Each licensee is addressed as "you".\par
\par
A "library" means a collection of software functions and/or data\par
prepared so as to be conveniently linked with application programs\par
(which use some of those functions and data) to form executables.\par
\par
The "Library", below, refers to any such software library or work\par
which has been distributed under these terms. A "work based on the\par
Library" means either the Library or any derivative work under\par
copyright law: that is to say, a work containing the Library or a\par
portion of it, either verbatim or with modifications and/or translated\par
straightforwardly into another language. (Hereinafter, translation is\par
included without limitation in the term "modification".)\par
\par
"Source code" for a work means the preferred form of the work for\par
making modifications to it. For a library, complete source code means\par
all the source code for all modules it contains, plus any associated\par
interface definition files, plus the scripts used to control compilation\par
and installation of the library.\par
\par
Activities other than copying, distribution and modification are not\par
covered by this License; they are outside its scope. The act of\par
running a program using the Library is not restricted, and output from\par
such a program is covered only if its contents constitute a work based\par
on the Library (independent of the use of the Library in a tool for\par
writing it). Whether that is true depends on what the Library does\par
and what the program that uses the Library does.\par
\par
1. You may copy and distribute verbatim copies of the Library's\par
complete source code as you receive it, in any medium, provided that\par
you conspicuously and appropriately publish on each copy an\par
appropriate copyright notice and disclaimer of warranty; keep intact\par
all the notices that refer to this License and to the absence of any\par
warranty; and distribute a copy of this License along with the\par
Library.\par
\par
You may charge a fee for the physical act of transferring a copy,\par
and you may at your option offer warranty protection in exchange for a\par
fee.\par
\par
2. You may modify your copy or copies of the Library or any portion\par
of it, thus forming a work based on the Library, and copy and\par
distribute such modifications or work under the terms of Section 1\par
above, provided that you also meet all of these conditions:\par
\par
a) The modified work must itself be a software library.\par
\par
b) You must cause the files modified to carry prominent notices\par
stating that you changed the files and the date of any change.\par
\par
c) You must cause the whole of the work to be licensed at no\par
charge to all third parties under the terms of this License.\par
\par
d) If a facility in the modified Library refers to a function or a\par
table of data to be supplied by an application program that uses\par
the facility, other than as an argument passed when the facility\par
is invoked, then you must make a good faith effort to ensure that,\par
in the event an application does not supply such function or\par
table, the facility still operates, and performs whatever part of\par
its purpose remains meaningful.\par
\par
(For example, a function in a library to compute square roots has\par
a purpose that is entirely well-defined independent of the\par
application. Therefore, Subsection 2d requires that any\par
application-supplied function or table used by this function must\par
be optional: if the application does not supply it, the square\par
root function must still compute square roots.)\par
\par
These requirements apply to the modified work as a whole. If\par
identifiable sections of that work are not derived from the Library,\par
and can be reasonably considered independent and separate works in\par
themselves, then this License, and its terms, do not apply to those\par
sections when you distribute them as separate works. But when you\par
distribute the same sections as part of a whole which is a work based\par
on the Library, the distribution of the whole must be on the terms of\par
this License, whose permissions for other licensees extend to the\par
entire whole, and thus to each and every part regardless of who wrote\par
it.\par
\par
Thus, it is not the intent of this section to claim rights or contest\par
your rights to work written entirely by you; rather, the intent is to\par
exercise the right to control the distribution of derivative or\par
collective works based on the Library.\par
\par
In addition, mere aggregation of another work not based on the Library\par
with the Library (or with a work based on the Library) on a volume of\par
a storage or distribution medium does not bring the other work under\par
the scope of this License.\par
\par
3. You may opt to apply the terms of the ordinary GNU General Public\par
License instead of this License to a given copy of the Library. To do\par
this, you must alter all the notices that refer to this License, so\par
that they refer to the ordinary GNU General Public License, version 2,\par
instead of to this License. (If a newer version than version 2 of the\par
ordinary GNU General Public License has appeared, then you can specify\par
that version instead if you wish.) Do not make any other change in\par
these notices.\par
\page\par
Once this change is made in a given copy, it is irreversible for\par
that copy, so the ordinary GNU General Public License applies to all\par
subsequent copies and derivative works made from that copy.\par
\par
This option is useful when you wish to copy part of the code of\par
the Library into a program that is not a library.\par
\par
4. You may copy and distribute the Library (or a portion or\par
derivative of it, under Section 2) in object code or executable form\par
under the terms of Sections 1 and 2 above provided that you accompany\par
it with the complete corresponding machine-readable source code, which\par
must be distributed under the terms of Sections 1 and 2 above on a\par
medium customarily used for software interchange.\par
\par
If distribution of object code is made by offering access to copy\par
from a designated place, then offering equivalent access to copy the\par
source code from the same place satisfies the requirement to\par
distribute the source code, even though third parties are not\par
compelled to copy the source along with the object code.\par
\par
5. A program that contains no derivative of any portion of the\par
Library, but is designed to work with the Library by being compiled or\par
linked with it, is called a "work that uses the Library". Such a\par
work, in isolation, is not a derivative work of the Library, and\par
therefore falls outside the scope of this License.\par
\par
However, linking a "work that uses the Library" with the Library\par
creates an executable that is a derivative of the Library (because it\par
contains portions of the Library), rather than a "work that uses the\par
library". The executable is therefore covered by this License.\par
Section 6 states terms for distribution of such executables.\par
\par
When a "work that uses the Library" uses material from a header file\par
that is part of the Library, the object code for the work may be a\par
derivative work of the Library even though the source code is not.\par
Whether this is true is especially significant if the work can be\par
linked without the Library, or if the work is itself a library. The\par
threshold for this to be true is not precisely defined by law.\par
\par
If such an object file uses only numerical parameters, data\par
structure layouts and accessors, and small macros and small inline\par
functions (ten lines or less in length), then the use of the object\par
file is unrestricted, regardless of whether it is legally a derivative\par
work. (Executables containing this object code plus portions of the\par
Library will still fall under Section 6.)\par
\par
Otherwise, if the work is a derivative of the Library, you may\par
distribute the object code for the work under the terms of Section 6.\par
Any executables containing that work also fall under Section 6,\par
whether or not they are linked directly with the Library itself.\par
\par
6. As an exception to the Sections above, you may also combine or\par
link a "work that uses the Library" with the Library to produce a\par
work containing portions of the Library, and distribute that work\par
under terms of your choice, provided that the terms permit\par
modification of the work for the customer's own use and reverse\par
engineering for debugging such modifications.\par
\par
You must give prominent notice with each copy of the work that the\par
Library is used in it and that the Library and its use are covered by\par
this License. You must supply a copy of this License. If the work\par
during execution displays copyright notices, you must include the\par
copyright notice for the Library among them, as well as a reference\par
directing the user to the copy of this License. Also, you must do one\par
of these things:\par
\par
a) Accompany the work with the complete corresponding\par
machine-readable source code for the Library including whatever\par
changes were used in the work (which must be distributed under\par
Sections 1 and 2 above); and, if the work is an executable linked\par
with the Library, with the complete machine-readable "work that\par
uses the Library", as object code and/or source code, so that the\par
user can modify the Library and then relink to produce a modified\par
executable containing the modified Library. (It is understood\par
that the user who changes the contents of definitions files in the\par
Library will not necessarily be able to recompile the application\par
to use the modified definitions.)\par
\par
b) Use a suitable shared library mechanism for linking with the\par
Library. A suitable mechanism is one that (1) uses at run time a\par
copy of the library already present on the user's computer system,\par
rather than copying library functions into the executable, and (2)\par
will operate properly with a modified version of the library, if\par
the user installs one, as long as the modified version is\par
interface-compatible with the version that the work was made with.\par
\par
c) Accompany the work with a written offer, valid for at\par
least three years, to give the same user the materials\par
specified in Subsection 6a, above, for a charge no more\par
than the cost of performing this distribution.\par
\par
d) If distribution of the work is made by offering access to copy\par
from a designated place, offer equivalent access to copy the above\par
specified materials from the same place.\par
\par
e) Verify that the user has already received a copy of these\par
materials or that you have already sent this user a copy.\par
\par
For an executable, the required form of the "work that uses the\par
Library" must include any data and utility programs needed for\par
reproducing the executable from it. However, as a special exception,\par
the materials to be distributed need not include anything that is\par
normally distributed (in either source or binary form) with the major\par
components (compiler, kernel, and so on) of the operating system on\par
which the executable runs, unless that component itself accompanies\par
the executable.\par
\par
It may happen that this requirement contradicts the license\par
restrictions of other proprietary libraries that do not normally\par
accompany the operating system. Such a contradiction means you cannot\par
use both them and the Library together in an executable that you\par
distribute.\par
\par
7. You may place library facilities that are a work based on the\par
Library side-by-side in a single library together with other library\par
facilities not covered by this License, and distribute such a combined\par
library, provided that the separate distribution of the work based on\par
the Library and of the other library facilities is otherwise\par
permitted, and provided that you do these two things:\par
\par
a) Accompany the combined library with a copy of the same work\par
based on the Library, uncombined with any other library\par
facilities. This must be distributed under the terms of the\par
Sections above.\par
\par
b) Give prominent notice with the combined library of the fact\par
that part of it is a work based on the Library, and explaining\par
where to find the accompanying uncombined form of the same work.\par
\par
8. You may not copy, modify, sublicense, link with, or distribute\par
the Library except as expressly provided under this License. Any\par
attempt otherwise to copy, modify, sublicense, link with, or\par
distribute the Library is void, and will automatically terminate your\par
rights under this License. However, parties who have received copies,\par
or rights, from you under this License will not have their licenses\par
terminated so long as such parties remain in full compliance.\par
\par
9. You are not required to accept this License, since you have not\par
signed it. However, nothing else grants you permission to modify or\par
distribute the Library or its derivative works. These actions are\par
prohibited by law if you do not accept this License. Therefore, by\par
modifying or distributing the Library (or any work based on the\par
Library), you indicate your acceptance of this License to do so, and\par
all its terms and conditions for copying, distributing or modifying\par
the Library or works based on it.\par
\par
10. Each time you redistribute the Library (or any work based on the\par
Library), the recipient automatically receives a license from the\par
original licensor to copy, distribute, link with or modify the Library\par
subject to these terms and conditions. You may not impose any further\par
restrictions on the recipients' exercise of the rights granted herein.\par
You are not responsible for enforcing compliance by third parties with\par
this License.\par
\par
11. If, as a consequence of a court judgment or allegation of patent\par
infringement or for any other reason (not limited to patent issues),\par
conditions are imposed on you (whether by court order, agreement or\par
otherwise) that contradict the conditions of this License, they do not\par
excuse you from the conditions of this License. If you cannot\par
distribute so as to satisfy simultaneously your obligations under this\par
License and any other pertinent obligations, then as a consequence you\par
may not distribute the Library at all. For example, if a patent\par
license would not permit royalty-free redistribution of the Library by\par
all those who receive copies directly or indirectly through you, then\par
the only way you could satisfy both it and this License would be to\par
refrain entirely from distribution of the Library.\par
\par
If any portion of this section is held invalid or unenforceable under any\par
particular circumstance, the balance of the section is intended to apply,\par
and the section as a whole is intended to apply in other circumstances.\par
\par
It is not the purpose of this section to induce you to infringe any\par
patents or other property right claims or to contest validity of any\par
such claims; this section has the sole purpose of protecting the\par
integrity of the free software distribution system which is\par
implemented by public license practices. Many people have made\par
generous contributions to the wide range of software distributed\par
through that system in reliance on consistent application of that\par
system; it is up to the author/donor to decide if he or she is willing\par
to distribute software through any other system and a licensee cannot\par
impose that choice.\par
\par
This section is intended to make thoroughly clear what is believed to\par
be a consequence of the rest of this License.\par
\par
12. If the distribution and/or use of the Library is restricted in\par
certain countries either by patents or by copyrighted interfaces, the\par
original copyright holder who places the Library under this License may add\par
an explicit geographical distribution limitation excluding those countries,\par
so that distribution is permitted only in or among countries not thus\par
excluded. In such case, this License incorporates the limitation as if\par
written in the body of this License.\par
\par
13. The Free Software Foundation may publish revised and/or new\par
versions of the Lesser General Public License from time to time.\par
Such new versions will be similar in spirit to the present version,\par
but may differ in detail to address new problems or concerns.\par
\par
Each version is given a distinguishing version number. If the Library\par
specifies a version number of this License which applies to it and\par
"any later version", you have the option of following the terms and\par
conditions either of that version or of any later version published by\par
the Free Software Foundation. If the Library does not specify a\par
license version number, you may choose any version ever published by\par
the Free Software Foundation.\par
\par
14. If you wish to incorporate parts of the Library into other free\par
programs whose distribution conditions are incompatible with these,\par
write to the author to ask for permission. For software which is\par
copyrighted by the Free Software Foundation, write to the Free\par
Software Foundation; we sometimes make exceptions for this. Our\par
decision will be guided by the two goals of preserving the free status\par
of all derivatives of our free software and of promoting the sharing\par
and reuse of software generally.\par
\par
\tab\tab\tab NO WARRANTY\par
\par
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\par
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\par
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\par
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY\par
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\par
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\par
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\par
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\par
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\par
\par
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\par
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\par
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\par
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\par
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\par
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\par
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\par
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\par
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\par
DAMAGES.\par
\par
\tab\tab END OF TERMS AND CONDITIONS\par
}

70
src/Setup/NetFxExtension.wxs

@ -0,0 +1,70 @@ @@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) Microsoft Corporation. All rights reserved.
The use and distribution terms for this software are covered by the
Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
which can be found in the file CPL.TXT at the root of this distribution.
By using this software in any fashion, you are agreeing to be bound by
the terms of this license.
You must not remove this notice, or any other, from this software.
Module.MSM - example source code for Merge Module from "Getting Started" in help
(Modified slightly for SharpDevelop - the NGen custom actions are only executed if the
user has administrator privileges)
-->
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
<Fragment>
<!-- will be set to 1 if the .NET Framework 1.1 is installed -->
<Property Id="NETFRAMEWORK11">
<RegistrySearch Id="NetFramework11" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322" Name="Install" Type="raw" />
</Property>
</Fragment>
<Fragment>
<Property Id="NETFRAMEWORK20">
<!-- set to 1 if the .NET Framework 2.0 is installed -->
<RegistrySearch Id="NetFramework20" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727" Name="Install" Type="raw" />
</Property>
</Fragment>
<Fragment>
<!-- location of the .NET Framework 1.1 SDK installation root -->
<Property Id="NETFRAMEWORK11SDKDIR">
<RegistrySearch Id="NetFramework11SDKDir" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="sdkInstallRootv1.1" Type="raw" />
</Property>
</Fragment>
<Fragment>
<!-- location of the .NET Framework 2.0 SDK installation root -->
<Property Id="NETFRAMEWORK20SDKDIR">
<RegistrySearch Id="NetFramework20SDKDir" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="sdkInstallRootv2.0" Type="raw" />
</Property>
</Fragment>
<!-- NetFx NativeImage Custom Action Definitions -->
<Fragment>
<Property Id="NetFxVersion" Value="v2.0.50727" />
<IgnoreModularization Name="NetFxScheduleNativeImage" Type="Action" />
<IgnoreModularization Name="NetFxExecuteNativeImage" Type="Action" />
<CustomAction Id="NetFxScheduleNativeImage" BinaryKey="NetFxCA" DllEntry="SchedNetFx" Execute="immediate" Return="check" />
<CustomAction Id="NetFxExecuteNativeImage" BinaryKey="NetFxCA" DllEntry="ExecNetFx" Execute="deferred" Impersonate="no" Return="check" />
<CustomAction Id="NetFxExecuteNativeImageCommit" BinaryKey="NetFxCA" DllEntry="ExecNetFx" Execute="commit" Impersonate="no" Return="check" />
<InstallExecuteSequence>
<Custom Action="NetFxScheduleNativeImage" Before="InstallFiles">Privileged</Custom>
<Custom Action="NetFxExecuteNativeImage" After="MsiPublishAssemblies">Privileged AND DISABLEROLLBACK = 1</Custom>
<Custom Action="NetFxExecuteNativeImageCommit" After="MsiPublishAssemblies">Privileged AND DISABLEROLLBACK &lt;&gt; 1</Custom>
</InstallExecuteSequence>
</Fragment>
<!-- NetFx Custom Action DLL Definitions -->
<Fragment>
<Binary Id="NetFxCA" SourceFile="netfxca.dll" />
</Fragment>
</Wix>

192
src/Setup/Setup.wxs

@ -0,0 +1,192 @@ @@ -0,0 +1,192 @@
<!-- Installer for SharpDevelop -->
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
<Product Id="A0AB2551-A579-42D3-9A90-D6424B3AC2CD"
Name="SharpDevelop 2.1"
Manufacturer="ic#code"
Language="1033"
Codepage="1252"
UpgradeCode="A1F371B6-4218-4F60-B01E-C996DF461B10"
Version="2.1.0.0">
<Package Id="DFC87BE9-A5A6-434D-97BA-F34BB1C1C1A7"
Description="SharpDevelop"
InstallerVersion="200"
Compressed="yes"/>
<!-- Conditions to be satisfied before the installer begins.-->
<!--
Check for .NET 2.0
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/msinetassemblysupport.asp
-->
<Condition Message="This setup requires the .NET Framework 2.0 or higher.">
MsiNetAssemblySupport &gt;= "2.0.50727"
</Condition>
<!--
Check for the operating system is at least Windows 2000 (VersionNT = 500).
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/operating_system_property_values.asp
-->
<Condition Message="The operating system you are using is not supported by SharpDevelop (95/98/ME/NT3.x/NT4.x).">
VersionNT &gt;= 500
</Condition>
<!--
Check the user has elevated permissions. We need admin rights to NGen
SharpDevelop.exe, to install NUnit into the GAC and to register the Help
collection.
At the moment we do not need admin rights since the installer only tries
to NGen and add NUnit to the GAC if we have admin rights. So as long
as the user does not try to install it into Program Files then the
install will finish successfully.
In order to get the NGen conditionally executed when the user has admin
rights we had to use a custom version of Wix's NetFxExtension.wxs file
where the custom actions conditions have been altered.
The old Setup.exe displays a RunAs dialog only because when it is named
"Setup.exe". So do we display an error message or let the installation
fail? The failure message is obscure so a message is before launching
is probably better.
-->
<!-- Not used since the install will work without admin rights.
<Condition Message="Administrator rights are required to install SharpDevelop.">
Privileged
</Condition> -->
<!--
Install for all users.
Using ALLUSERS=2 means SharpDevelop can be installed by a non-admin.
In this case it will be a per-user installation installed into the
user's personal profile.
(The installer will be adding assemblies to the GAC and using NGen
on SharpDevelop.exe if and only if the user has admin rights)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/allusers.asp
-->
<Property Id="ALLUSERS">2</Property>
<!--
Support entries shown when clicking "Click here for support information"
in Control Panel's Add/Remove Programs
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/configuration_properties.asp
-->
<Property Id="ARPCONTACT">http://icsharpcode.net/OpenSource/SD/ContactUs.asp</Property>
<Property Id="ARPHELPLINK">http://community.sharpdevelop.net/forums/</Property>
<Property Id="ARPURLINFOABOUT">http://icsharpcode.net/OpenSource/SD/</Property>
<Property Id="ARPURLUPDATEINFO">http://icsharpcode.net/OpenSource/SD/Download/</Property>
<Property Id="ARPREADME" Value="[DocFolder]\readme.rtf"/>
<!-- Suppress the Modify button in the Control Panel's Add/Remove Programs -->
<!--
Temporarily disabled whilst using the WixUI library
<Property Id="ARPNOMODIFY">1</Property>
-->
<!-- Puts SharpDevelop icon in Control Panel's Add/Remove Programs -->
<Property Id="ARPPRODUCTICON">SharpDevelopIcon.exe</Property>
<Icon Id="SharpDevelopIcon.exe" SourceFile="..\Main\StartUp\Project\Resources\SharpDevelop.ico"/>
<!--
Source media for the installation.
Specifies a single cab file to be embedded in the installer's .msi.
-->
<Media Id="1" Cabinet="contents.cab" EmbedCab="yes"/>
<!-- Installation directory and files are defined in Files.wxs -->
<Directory Id="TARGETDIR" Name="SourceDir"/>
<!--
Currently just one core feature to install everything.
Source code will become a separate feature. Perhaps all the add-ins too could
each be a feature if the user wants to heavily customise the installation.
-->
<Feature Id="Complete" Level="1">
<ComponentRef Id="SharpDevelopExe"/>
<ComponentRef Id="SharpDevelopCoreFiles"/>
<ComponentRef Id="SharpDevelopDocFiles"/>
<ComponentRef Id="SharpDevelopTechNoteFiles"/>
<ComponentRef Id="ComponentInspectorFiles"/>
<ComponentRef Id="SharpDevelopProgramMenuItems"/>
<ComponentRef Id="DesktopFolderItems"/>
<ComponentRef Id="NDocFiles"/>
<ComponentRef Id="WixFiles"/>
<ComponentRef Id="WixBitmapFiles"/>
<ComponentRef Id="WixDocFiles"/>
<ComponentRef Id="WixIncFiles"/>
<ComponentRef Id="WixLibFiles"/>
<ComponentRef Id="NUnitFiles"/>
<ComponentRef Id="NUnitCoreDll"/>
<ComponentRef Id="NUnitFrameworkDll"/>
<ComponentRef Id="NUnitCoreGacDll"/>
<ComponentRef Id="NUnitFrameworkGacDll"/>
<ComponentRef Id="ConversionStyleSheetFiles"/>
<ComponentRef Id="TextLibOptionsFiles"/>
<ComponentRef Id="OptionsFiles"/>
<ComponentRef Id="CssFiles"/>
<ComponentRef Id="InstallerBitmapFiles"/>
<ComponentRef Id="LanguageBitmapFiles"/>
<ComponentRef Id="LayoutFiles"/>
<ComponentRef Id="StartPageLayoutBlueFiles"/>
<ComponentRef Id="StartPageLayoutBrownFiles"/>
<ComponentRef Id="StartPageLayoutCommonFiles"/>
<ComponentRef Id="StartPageLayoutGreenFiles"/>
<ComponentRef Id="StartPageLayoutOrangeFiles"/>
<ComponentRef Id="StartPageLayoutRedFiles"/>
<ComponentRef Id="StartPageLayoutFiles"/>
<ComponentRef Id="StringResourceFiles"/>
<ComponentRef Id="SchemaFiles"/>
<ComponentRef Id="CSharpFileTemplates"/>
<ComponentRef Id="VBNetFileTemplates"/>
<ComponentRef Id="MiscFileTemplates"/>
<ComponentRef Id="SharpDevelopFileTemplates"/>
<ComponentRef Id="CSharpProjectTemplates"/>
<ComponentRef Id="MiscProjectTemplates"/>
<ComponentRef Id="VBNetProjectTemplates"/>
<ComponentRef Id="ExampleProjectTemplate"/>
<ComponentRef Id="ICSharpCode.SharpDevelop.addin"/>
<ComponentRef Id="BooTemplateFiles"/>
<ComponentRef Id="BooBindingFiles"/>
<ComponentRef Id="CSharpBindingFiles"/>
<ComponentRef Id="ILAsmTemplates"/>
<ComponentRef Id="ILAsmBindingFiles"/>
<ComponentRef Id="VBNetBindingFiles"/>
<ComponentRef Id="WixBindingFiles"/>
<ComponentRef Id="WixBindingTemplates"/>
<ComponentRef Id="FormsDesignerFiles"/>
<ComponentRef Id="IconEditorFiles"/>
<ComponentRef Id="ResourceEditorFiles"/>
<ComponentRef Id="XmlEditorFiles"/>
<ComponentRef Id="AddInManagerFiles"/>
<ComponentRef Id="AddInScoutFiles"/>
<ComponentRef Id="CodeAnalysisFiles"/>
<ComponentRef Id="CodeCoverageFiles"/>
<ComponentRef Id="ComponentInspectorAddInFiles"/>
<ComponentRef Id="DebuggerAddInFiles"/>
<ComponentRef Id="FiletypeIcons"/>
<ComponentRef Id="FiletypeRegistererFiles"/>
<ComponentRef Id="HighlightingEditorFiles"/>
<ComponentRef Id="HtmlHelp2Files"/>
<ComponentRef Id="MonoAddInFiles"/>
<ComponentRef Id="NAntAddInFiles"/>
<ComponentRef Id="PInvokeAddInFiles"/>
<ComponentRef Id="RegExToolkitFiles"/>
<ComponentRef Id="SharpDbToolsFiles"/>
<ComponentRef Id="SharpQueryFiles"/>
<ComponentRef Id="SharpReportFiles"/>
<ComponentRef Id="StartPageAddInFiles"/>
<ComponentRef Id="SubversionAddInFiles"/>
<ComponentRef Id="UnitTestingAddInFiles"/>
<ComponentRef Id="SyntaxModesFiles"/>
<ComponentRef Id="SharpDevelopWebsiteShortcut"/>
<ComponentRef Id="SharpDevelopAppPathRegistrySetting"/>
</Feature>
<!-- Using WixUI temporarily -->
<Property Id="WIXUI_INSTALLDIR">INSTALLDIR</Property>
<UIRef Id="WixUI_InstallDir"/>
</Product>
</Wix>

16
src/Setup/SharpDevelop.Setup.sln

@ -0,0 +1,16 @@ @@ -0,0 +1,16 @@
Microsoft Visual Studio Solution File, Format Version 9.00
# SharpDevelop 2.1.0.1668
Project("{CFEE4113-1246-4D54-95CB-156813CB8593}") = "SharpDevelop.Setup", "SharpDevelop.Setup.wixproj", "{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}.Release|Any CPU.Build.0 = Release|Any CPU
{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
EndGlobal

42
src/Setup/SharpDevelop.Setup.wixproj

@ -0,0 +1,42 @@ @@ -0,0 +1,42 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputName>SharpDevelop</OutputName>
<OutputType>package</OutputType>
<WixToolPath Condition=" '$(WixToolPath)' == '' ">$(SharpDevelopBinPath)\Tools\Wix</WixToolPath>
<ToolPath Condition=" '$(ToolPath)' == '' ">$(WixToolPath)</ToolPath>
<WixMSBuildExtensionsPath>$(SharpDevelopBinPath)\Tools\Wix</WixMSBuildExtensionsPath>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<RootNamespace>SharpDevelop.Setup</RootNamespace>
<ProjectGuid>{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}</ProjectGuid>
<OutputPath>bin\</OutputPath>
<WarningLevel>0</WarningLevel>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<LocalizedStringFile>..\..\bin\Tools\Wix\WixUI_en-us.wxl</LocalizedStringFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<BaseOutputPath>obj\</BaseOutputPath>
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<BaseOutputPath>obj\</BaseOutputPath>
<IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Setup.wxs" />
<Compile Include="Files.wxs" />
<WixLibrary Include="..\..\bin\Tools\Wix\wixui.wixlib" />
<Compile Include="NetFxExtension.wxs" />
</ItemGroup>
<ItemGroup>
<CompileExtension Include="WixNetFxExtension">
<Class>Microsoft.Tools.WindowsInstallerXml.Extensions.NetFxCompiler</Class>
</CompileExtension>
<LibExtension Include="WixNetFxExtension">
<Class>Microsoft.Tools.WindowsInstallerXml.Extensions.NetFxCompiler</Class>
</LibExtension>
<LinkExtension Include="WixNetFxExtension">
<Class>Microsoft.Tools.WindowsInstallerXml.Extensions.NetFxCompiler</Class>
</LinkExtension>
</ItemGroup>
<Import Project="$(WixMSBuildExtensionsPath)\wix.targets" />
</Project>

3
src/Setup/buildSetup.bat

@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
del "bin\SharpDevelop.msi"
%windir%\microsoft.net\framework\v2.0.50727\msbuild SharpDevelop.Setup.sln "/p:SharpDevelopBinPath=%CD%\..\..\bin"
@IF %ERRORLEVEL% NEQ 0 PAUSE

2
src/Tools/Tools.build

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
<ItemGroup>
<NDocFiles Include="ndoc\bin\*"/>
<WixFiles Include="wix\*"/>
<WixBitmapFiles Include="wix\Bitmaps\*"/>
<WixDocFiles Include="wix\doc\*"/>
<WixLibFiles Include="wix\lib\*"/>
<WixIncFiles Include="wix\inc\*"/>
@ -16,6 +17,7 @@ @@ -16,6 +17,7 @@
<Copy SourceFiles="@(NDocFiles)" DestinationFolder="..\..\bin\Tools\NDoc"/>
<Copy SourceFiles="@(WixFiles)" DestinationFolder="..\..\bin\Tools\Wix"/>
<Copy SourceFiles="@(WixDocFiles)" DestinationFolder="..\..\bin\Tools\Wix\doc"/>
<Copy SourceFiles="@(WixBitmapFiles)" DestinationFolder="..\..\bin\Tools\Wix\Bitmaps"/>
<Copy SourceFiles="@(WixIncFiles)" DestinationFolder="..\..\bin\Tools\Wix\inc"/>
<Copy SourceFiles="@(WixLibFiles)" DestinationFolder="..\..\bin\Tools\Wix\lib"/>
<Copy SourceFiles="@(NUnitFiles)" DestinationFolder="..\..\bin\Tools\NUnit"/>

Loading…
Cancel
Save