Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorJonathan Pobst <monkey@jpobst.com>2009-06-04 01:16:28 +0400
committerJonathan Pobst <monkey@jpobst.com>2009-06-04 01:16:28 +0400
commit2f7232400780798a858c71612fa6b2a6868ba006 (patch)
treeae25dccfbc929ca4957ff98971f07ca2c2c71326 /setup
parentaa11da429954141192b63f6b1f7ddb43b5476b52 (diff)
- Add wix installer project for MD.
svn path=/trunk/monodevelop/; revision=135353
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/Bitmaps/MonoDevelop.icobin0 -> 17542 bytes
-rw-r--r--setup/WixSetup/Bitmaps/bannrbmp.bmpbin0 -> 85896 bytes
-rw-r--r--setup/WixSetup/Bitmaps/dlgbmp.bmpbin0 -> 461816 bytes
-rw-r--r--setup/WixSetup/Product.wxs293
-rw-r--r--setup/WixSetup/WixSetup.sln20
-rw-r--r--setup/WixSetup/WixSetup.wixproj51
-rw-r--r--setup/WixSetup/license.rtf342
7 files changed, 706 insertions, 0 deletions
diff --git a/setup/WixSetup/Bitmaps/MonoDevelop.ico b/setup/WixSetup/Bitmaps/MonoDevelop.ico
new file mode 100644
index 0000000000..89c50b61b0
--- /dev/null
+++ b/setup/WixSetup/Bitmaps/MonoDevelop.ico
Binary files differ
diff --git a/setup/WixSetup/Bitmaps/bannrbmp.bmp b/setup/WixSetup/Bitmaps/bannrbmp.bmp
new file mode 100644
index 0000000000..9c89c6fbe3
--- /dev/null
+++ b/setup/WixSetup/Bitmaps/bannrbmp.bmp
Binary files differ
diff --git a/setup/WixSetup/Bitmaps/dlgbmp.bmp b/setup/WixSetup/Bitmaps/dlgbmp.bmp
new file mode 100644
index 0000000000..77f532da49
--- /dev/null
+++ b/setup/WixSetup/Bitmaps/dlgbmp.bmp
Binary files differ
diff --git a/setup/WixSetup/Product.wxs b/setup/WixSetup/Product.wxs
new file mode 100644
index 0000000000..bb7e487e6b
--- /dev/null
+++ b/setup/WixSetup/Product.wxs
@@ -0,0 +1,293 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?define ProductShortName = "MonoDevelop" ?>
+<?define ProductVersion = "2.1.0" ?>
+<?define ProductVersionText = "2.1" ?>
+<?define Manufacturer = "Novell" ?>
+<?define UpgradeCode = "9134F74C-E7E3-471A-9833-C86FB45CD38E" ?>
+
+<?define BuildRoot= "..\..\main\build" ?>
+
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
+ <Product Id="*" Name="$(var.ProductShortName) $(var.ProductVersionText)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
+ <Package Id="*" Compressed="yes" Description="$(var.ProductShortName) $(var.ProductVersionText) ($(var.ProductVersion))" InstallerVersion="200" ShortNames="no" Manufacturer="$(var.Manufacturer)" />
+ <Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />
+
+ <!-- Major upgrade -->
+ <Upgrade Id="$(var.UpgradeCode)">
+ <UpgradeVersion Minimum="$(var.ProductVersion)" OnlyDetect="yes" Property="NEWERVERSIONDETECTED" />
+ <UpgradeVersion Minimum="0.0.0" IncludeMinimum="yes" Maximum="$(var.ProductVersion)" IncludeMaximum="no" Property="OLDERVERSIONBEINGUPGRADED" />
+ </Upgrade>
+
+ <Directory Id="TARGETDIR" Name="SourceDir">
+ <Directory Id="ProgramFilesFolder">
+ <Directory Id="INSTALLLOCATION" Name="MonoDevelop">
+ <Directory Id="bin" Name="bin">
+ <Component Id="ProductComponent" Guid="38703ED9-C1D1-4DC5-834B-31B8059BF7DF">
+ <File Name="MonoDevelop.exe" Source="$(var.BuildRoot)\bin\MonoDevelop.exe">
+ <Shortcut Id="md_shortcut" Directory="ProgramMenuDir" Name="$(var.ProductShortName)" WorkingDirectory='INSTALLLOCATION' Icon="MonoDevelop.exe" IconIndex="0" Advertise="yes" />
+ </File>
+ <File Name="mdhost.exe" Source="$(var.BuildRoot)\bin\mdhost.exe" />
+ <File Name="mdrun.exe" Source="$(var.BuildRoot)\bin\mdrun.exe" />
+ <File Name="Mono.Cecil.dll" Source="$(var.BuildRoot)\bin\Mono.Cecil.dll" />
+ <File Name="Mono.Cecil.Mdb.dll" Source="$(var.BuildRoot)\bin\Mono.Cecil.Mdb.dll" />
+ <File Name="Mono.Debugging.dll" Source="$(var.BuildRoot)\bin\Mono.Debugging.dll" />
+ <File Name="Mono.TextEditor.dll" Source="$(var.BuildRoot)\bin\Mono.TextEditor.dll" />
+ <File Name="MonoDevelop.Components.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Components.dll" />
+ <File Name="MonoDevelop.Core.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Core.dll" />
+ <File Name="MonoDevelop.Core.Gui.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Core.Gui.dll" />
+ <File Name="MonoDevelop.Dock.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Dock.dll" />
+ <File Name="MonoDevelop.exe.addins" Source="$(var.BuildRoot)\bin\MonoDevelop.exe.addins" />
+ <File Name="MonoDevelop.exe.config" Source="$(var.BuildRoot)\bin\MonoDevelop.exe.config" />
+ <File Name="MonoDevelop.Ide.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Ide.dll" />
+ <File Name="MonoDevelop.Projects.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Projects.dll" />
+ <File Name="MonoDevelop.Projects.Gui.dll" Source="$(var.BuildRoot)\bin\MonoDevelop.Projects.Gui.dll" />
+ <File Name="NRefactory.dll" Source="$(var.BuildRoot)\bin\NRefactory.dll" />
+
+ <File Name="ICSharpCode.SharpZipLib.dll" Source="Libraries\ICSharpCode.SharpZipLib.dll" />
+ <File Name="Mono.Addins.dll" Source="Libraries\Mono.Addins.dll" />
+ <File Name="Mono.Addins.Gui.dll" Source="Libraries\Mono.Addins.Gui.dll" />
+ <File Name="Mono.Addins.Setup.dll" Source="Libraries\Mono.Addins.Setup.dll" />
+ <File Name="Mono.Addins.CecilReflector.dll" Source="Libraries\Mono.Addins.CecilReflector.dll" />
+ <File Name="Mono.GetOptions.dll" Source="Libraries\Mono.GetOptions.dll" />
+ <File Name="monodoc.dll" Source="Libraries\monodoc.dll" />
+
+ <!-- Program Menu Shortcut -->
+ <RemoveFolder Id='ProgramMenuDir' Directory="ProgramMenuDir" On='uninstall' />
+ </Component>
+ </Directory>
+ <Directory Id="AddIns" Name="AddIns">
+ <Directory Id="BackendBindings" Name="BackendBindings">
+ <Component Id="MonoDevelop_AddIns_BackendBindings" Guid="b19ec8a7-dcb7-4261-b043-57c6d10403fe">
+ <File Name="ILAsmBinding.dll" Source="$(var.BuildRoot)\AddIns\BackendBindings\ILAsmBinding.dll" />
+ <File Name="MonoDevelop.CBinding.Autotools.dll" Source="$(var.BuildRoot)\AddIns\BackendBindings\MonoDevelop.CBinding.Autotools.dll" />
+ <File Name="MonoDevelop.CBinding.dll" Source="$(var.BuildRoot)\AddIns\BackendBindings\MonoDevelop.CBinding.dll" />
+ <File Name="MonoDevelop.CSharpBinding.Autotools.dll" Source="$(var.BuildRoot)\AddIns\BackendBindings\MonoDevelop.CSharpBinding.Autotools.dll" />
+ <File Name="MonoDevelop.CSharpBinding.dll" Source="$(var.BuildRoot)\AddIns\BackendBindings\MonoDevelop.CSharpBinding.dll" />
+ <File Name="MonoDevelop.VBNetBinding.dll" Source="$(var.BuildRoot)\AddIns\BackendBindings\MonoDevelop.VBNetBinding.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="ChangeLogAddIn" Name="ChangeLogAddIn">
+ <Component Id="MonoDevelop_AddIns_ChangeLogAddIn" Guid="8e611a97-18a5-4dcf-8f46-7580c9444b34">
+ <File Name="ChangeLogAddIn.dll" Source="$(var.BuildRoot)\AddIns\ChangeLogAddIn\ChangeLogAddIn.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.AspNet" Name="MonoDevelop.AspNet">
+ <Directory Id="Schemas" Name="Schemas">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_AspNet_Schemas" Guid="73b6d898-25ee-4919-a606-2db8e967484b">
+ <File Name="readme2.txt" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AspNet\Schemas\readme.txt" />
+ <File Name="W3C-License2.html" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AspNet\Schemas\W3C-License.html" />
+ <File Name="xhtml1-frameset.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AspNet\Schemas\xhtml1-frameset.xsd" />
+ <File Name="xhtml1-strict.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AspNet\Schemas\xhtml1-strict.xsd" />
+ <File Name="xhtml1-transitional.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AspNet\Schemas\xhtml1-transitional.xsd" />
+ </Component>
+ </Directory>
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_AspNet" Guid="9f523acf-05aa-4ac9-b080-b520fea565dc">
+ <File Name="MonoDevelop.AspNet.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AspNet\MonoDevelop.AspNet.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.Autotools" Name="MonoDevelop.Autotools">
+ <Directory Id="templates" Name="templates">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Autotools_templates" Guid="e83dc765-18b6-4de6-8dc2-a8bbe69fd3c1">
+ <File Name="autogen.sh.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\autogen.sh.template" />
+ <File Name="configure.ac.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\configure.ac.template" />
+ <File Name="configure.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\configure.template" />
+ <File Name="exe.wrapper.in.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\exe.wrapper.in.template" />
+ <File Name="expansions.m4" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\expansions.m4" />
+ <File Name="make-dist.targets" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\make-dist.targets" />
+ <File Name="Makefile.am.project.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\Makefile.am.project.template" />
+ <File Name="Makefile.include" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\Makefile.include" />
+ <File Name="Makefile.noauto.project.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\Makefile.noauto.project.template" />
+ <File Name="Makefile.solution.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\Makefile.solution.template" />
+ <File Name="package.pc.template" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\package.pc.template" />
+ <File Name="rules.make" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\templates\rules.make" />
+ </Component>
+ </Directory>
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Autotools" Guid="d5c8de5b-0262-4cb3-a3d2-fccf94fbf369">
+ <File Name="MonoDevelop.Autotools.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Autotools\MonoDevelop.Autotools.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.CodeMetrics" Name="MonoDevelop.CodeMetrics">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_CodeMetrics" Guid="59768b85-97fc-42f9-9afc-5dac181759f6">
+ <File Name="MonoDevelop.CodeMetrics.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.CodeMetrics\MonoDevelop.CodeMetrics.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.Debugger" Name="MonoDevelop.Debugger">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Debugger" Guid="81b0e56f-9881-4b59-9c69-4ba48380b6d1">
+ <File Name="MonoDevelop.Debugger.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Debugger\MonoDevelop.Debugger.dll" />
+ <File Name="CorApi.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Debugger\CorApi.dll" />
+ <File Name="CorApi2.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Debugger\CorApi2.dll" />
+ <File Name="MonoDevelop.Debugger.Win32.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Debugger\MonoDevelop.Debugger.Win32.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.Deployment" Name="MonoDevelop.Deployment">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Deployment" Guid="3d8cf1ee-115a-4eb7-ab6c-096cedb49dde">
+ <File Name="MonoDevelop.Deployment.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Deployment\MonoDevelop.Deployment.dll" />
+ <File Name="MonoDevelop.Deployment.Linux.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Deployment\MonoDevelop.Deployment.Linux.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.DesignerSupport" Name="MonoDevelop.DesignerSupport">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_DesignerSupport" Guid="1bc670c4-3e3f-4b91-8ee1-73cc2022282a">
+ <File Name="MonoDevelop.DesignerSupport.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.DesignerSupport\MonoDevelop.DesignerSupport.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.Gettext" Name="MonoDevelop.Gettext">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Gettext" Guid="309076af-d0ee-4299-8b36-aa514d18bc9b">
+ <File Name="MonoDevelop.Gettext.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Gettext\MonoDevelop.Gettext.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.GtkCore" Name="MonoDevelop.GtkCore">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_GtkCore" Guid="df7b1e46-44ae-41d4-99ab-9d02455dd963">
+ <File Name="libstetic.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.GtkCore\libstetic.dll" />
+ <File Name="libstetic.dll.config" Source="$(var.BuildRoot)\AddIns\MonoDevelop.GtkCore\libstetic.dll.config" />
+ <File Name="libsteticui.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.GtkCore\libsteticui.dll" />
+ <File Name="libsteticui.dll.config" Source="$(var.BuildRoot)\AddIns\MonoDevelop.GtkCore\libsteticui.dll.config" />
+ <File Name="MonoDevelop.GtkCore.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.GtkCore\MonoDevelop.GtkCore.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.Moonlight" Name="MonoDevelop.Moonlight">
+ <Directory Id="Templates" Name="Templates">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Moonlight_Templates" Guid="5d50359a-19c7-4620-80d6-904a949b7093">
+ <File Name="Silverlight.js" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Moonlight\Templates\Silverlight.js" />
+ </Component>
+ </Directory>
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_Moonlight" Guid="290aa8aa-edf6-4ac4-bca9-5eb5e86e23b7">
+ <File Name="MonoDevelop.Moonlight.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.Moonlight\MonoDevelop.Moonlight.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.MsVisualStudio" Name="MonoDevelop.MsVisualStudio">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_MsVisualStudio" Guid="abf039a4-cb3d-4bc4-99ed-f0de6ec1a222">
+ <File Name="MonoDevelop.MsVisualStudio.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.MsVisualStudio\MonoDevelop.MsVisualStudio.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.RegexToolkit" Name="MonoDevelop.RegexToolkit">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_RegexToolkit" Guid="fada4d10-0c22-43a4-826f-fe71a88a3e07">
+ <File Name="MonoDevelop.RegexToolkit.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.RegexToolkit\MonoDevelop.RegexToolkit.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.WebReferences" Name="MonoDevelop.WebReferences">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_WebReferences" Guid="c38deac4-bbb9-43b9-b152-2ce207b1fc41">
+ <File Name="MonoDevelop.WebReferences.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.WebReferences\MonoDevelop.WebReferences.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDevelop.XmlEditor" Name="MonoDevelop.XmlEditor">
+ <Directory Id="schemas" Name="schemas">
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_XmlEditor_schemas" Guid="54c2c174-6e29-4474-95cc-00b43c64bfce">
+ <File Name="appconfig.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\appconfig.xsd" />
+ <File Name="manifest.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\manifest.xsd" />
+ <File Name="MonoDevelopAddIn.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\MonoDevelopAddIn.xsd" />
+ <File Name="nant.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\nant.xsd" />
+ <File Name="readme.txt" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\readme.txt" />
+ <File Name="W3C-License.html" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\W3C-License.html" />
+ <File Name="XMLSchema.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\XMLSchema.xsd" />
+ <File Name="xslt.xsd" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\schemas\xslt.xsd" />
+ </Component>
+ </Directory>
+ <Component Id="MonoDevelop_AddIns_MonoDevelop_XmlEditor" Guid="215847a4-2297-43cf-91c0-dda9dde92140">
+ <File Name="MonoDevelop.XmlEditor.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.XmlEditor\MonoDevelop.XmlEditor.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="MonoDeveloperExtensions" Name="MonoDeveloperExtensions">
+ <Component Id="MonoDevelop_AddIns_MonoDeveloperExtensions" Guid="2c95f1b4-112f-4c57-b195-63e05a9c4f6a">
+ <File Name="MonoDeveloperExtensions.dll" Source="$(var.BuildRoot)\AddIns\MonoDeveloperExtensions\MonoDeveloperExtensions.dll" />
+ <File Name="MonoDeveloperExtensions_nunit.dll" Source="$(var.BuildRoot)\AddIns\MonoDeveloperExtensions\MonoDeveloperExtensions_nunit.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="NUnit" Name="NUnit">
+ <Component Id="MonoDevelop_AddIns_NUnit" Guid="97b2cd9f-32ae-4db4-997c-6232bc5d67dd">
+ <File Name="MonoDevelop.NUnit.dll" Source="$(var.BuildRoot)\AddIns\NUnit\MonoDevelop.NUnit.dll" />
+ <File Name="nunit.core.dll" Source="$(var.BuildRoot)\AddIns\NUnit\nunit.core.dll" />
+ <File Name="nunit.core.interfaces.dll" Source="$(var.BuildRoot)\AddIns\NUnit\nunit.core.interfaces.dll" />
+ <File Name="nunit.framework.dll" Source="$(var.BuildRoot)\AddIns\NUnit\nunit.framework.dll" />
+ <File Name="nunit.util.dll" Source="$(var.BuildRoot)\AddIns\NUnit\nunit.util.dll" />
+ <File Name="NUnitRunner.dll" Source="$(var.BuildRoot)\AddIns\NUnit\NUnitRunner.dll" />
+ </Component>
+ </Directory>
+ <Directory Id="VersionControl" Name="VersionControl">
+ <Component Id="MonoDevelop_AddIns_VersionControl" Guid="185a74d4-17c2-4e94-9dbc-4c391026eb1e">
+ <File Name="Diff.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\Diff.dll" />
+ <File Name="DiffWidget.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\DiffWidget.dll" />
+ <File Name="MonoDevelop.VersionControl.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\MonoDevelop.VersionControl.dll" />
+ <File Name="MonoDevelop.VersionControl.Subversion.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\MonoDevelop.VersionControl.Subversion.dll" />
+ <File Name="SharpSvn.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\SharpSvn.dll" />
+ <File Name="SharpSvn-DB44-20-Win32.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\SharpSvn-DB44-20-Win32.dll" />
+ <File Name="SharpSvn-SASL21-22-Win32.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\SharpSvn-SASL21-22-Win32.dll" />
+ <File Name="SubversionAddinWindows.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\SubversionAddinWindows.dll" />
+ <File Name="SharpPlink-Win32.svnExe" Source="$(var.BuildRoot)\AddIns\VersionControl\SharpPlink-Win32.svnExe" />
+ </Component>
+ </Directory>
+ <Directory Id="WelcomePage" Name="WelcomePage">
+ <Component Id="MonoDevelop_AddIns_WelcomePage" Guid="637d09c3-26f7-461c-b310-da92fb969c32">
+ <File Name="mono-bg.png" Source="$(var.BuildRoot)\AddIns\WelcomePage\mono-bg.png" />
+ <File Name="mono-decoration.png" Source="$(var.BuildRoot)\AddIns\WelcomePage\mono-decoration.png" />
+ <File Name="mono-logo.png" Source="$(var.BuildRoot)\AddIns\WelcomePage\mono-logo.png" />
+ <File Name="WelcomePage.css" Source="$(var.BuildRoot)\AddIns\WelcomePage\WelcomePage.css" />
+ <File Name="WelcomePage.dll" Source="$(var.BuildRoot)\AddIns\WelcomePage\WelcomePage.dll" />
+ </Component>
+ </Directory>
+
+ <Component Id="MonoDevelop_AddIns" Guid="46cc2e83-b46c-4c25-9b35-ef5fc55ffec7">
+ <File Name="MonoDevelop.AssemblyBrowser.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.AssemblyBrowser.dll" />
+ <File Name="MonoDevelop.SourceEditor2.dll" Source="$(var.BuildRoot)\AddIns\MonoDevelop.SourceEditor2.dll" />
+ <File Name="WindowsPlatform.dll" Source="$(var.BuildRoot)\AddIns\WindowsPlatform.dll" />
+ </Component>
+ </Directory>
+ </Directory>
+ </Directory>
+
+ <Directory Id="ProgramMenuFolder" Name="PMenu">
+ <Directory Id="ProgramMenuDir" Name='$(var.ProductShortName)' />
+ </Directory>
+ </Directory>
+
+ <Feature Id="ProductFeature" Title="MonoDevelop" Level="1">
+ <ComponentRef Id="ProductComponent" />
+ <ComponentRef Id="MonoDevelop_AddIns_BackendBindings" />
+ <ComponentRef Id="MonoDevelop_AddIns_ChangeLogAddIn" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_AspNet_Schemas" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_AspNet" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Autotools_templates" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Autotools" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_CodeMetrics" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Debugger" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Deployment" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_DesignerSupport" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Gettext" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_GtkCore" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Moonlight_Templates" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_Moonlight" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_MsVisualStudio" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_RegexToolkit" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_WebReferences" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_XmlEditor_schemas" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDevelop_XmlEditor" />
+ <ComponentRef Id="MonoDevelop_AddIns_MonoDeveloperExtensions" />
+ <ComponentRef Id="MonoDevelop_AddIns_NUnit" />
+ <ComponentRef Id="MonoDevelop_AddIns_VersionControl" />
+ <ComponentRef Id="MonoDevelop_AddIns_WelcomePage" />
+ <ComponentRef Id="MonoDevelop_AddIns" />
+ </Feature>
+
+ <!-- Sequences -->
+ <InstallExecuteSequence>
+ <RemoveExistingProducts After="InstallValidate" />
+ </InstallExecuteSequence>
+
+ <InstallUISequence>
+ <!-- Because we have a launch condition that uses the results of FindRelatedProducts, put it first. -->
+ <LaunchConditions After="FindRelatedProducts" />
+ </InstallUISequence>
+
+ <!-- This enables the license screen and where to install screen -->
+ <Property Id="WIXUI_INSTALLDIR">INSTALLLOCATION</Property>
+ <UIRef Id="WixUI_InstallDir"/>
+
+ <!-- Specify the license to display and graphics to use in our GUI -->
+ <WixVariable Id="WixUILicenseRtf" Value="license.rtf" />
+ <WixVariable Id="WixUIBannerBmp" Value="Bitmaps\bannrbmp.bmp" />
+ <WixVariable Id="WixUIDialogBmp" Value="Bitmaps\dlgbmp.bmp" />
+
+ <!-- This is for the icon that is shown in the Add/Remove Programs dialog and menu shortcut -->
+ <Icon Id="MonoDevelop.exe" SourceFile="Bitmaps\MonoDevelop.ico" />
+ <Property Id="ARPPRODUCTICON" Value="MonoDevelop.exe" />
+ </Product>
+</Wix>
diff --git a/setup/WixSetup/WixSetup.sln b/setup/WixSetup/WixSetup.sln
new file mode 100644
index 0000000000..c40faa1e4b
--- /dev/null
+++ b/setup/WixSetup/WixSetup.sln
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "WixSetup", "WixSetup.wixproj", "{33F58FFC-956E-4079-B27A-160A57FFEA7A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x86 = Debug|x86
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {33F58FFC-956E-4079-B27A-160A57FFEA7A}.Debug|x86.ActiveCfg = Debug|x86
+ {33F58FFC-956E-4079-B27A-160A57FFEA7A}.Debug|x86.Build.0 = Debug|x86
+ {33F58FFC-956E-4079-B27A-160A57FFEA7A}.Release|x86.ActiveCfg = Release|x86
+ {33F58FFC-956E-4079-B27A-160A57FFEA7A}.Release|x86.Build.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/setup/WixSetup/WixSetup.wixproj b/setup/WixSetup/WixSetup.wixproj
new file mode 100644
index 0000000000..64b3fd130a
--- /dev/null
+++ b/setup/WixSetup/WixSetup.wixproj
@@ -0,0 +1,51 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
+ <ProductVersion>3.0</ProductVersion>
+ <ProjectGuid>{33f58ffc-956e-4079-b27a-160a57ffea7a}</ProjectGuid>
+ <SchemaVersion>2.0</SchemaVersion>
+ <OutputName>Setup</OutputName>
+ <OutputType>Package</OutputType>
+ <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.0\Wix.targets</WixTargetsPath>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
+ <OutputPath>bin\$(Configuration)\</OutputPath>
+ <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
+ <DefineConstants>Debug</DefineConstants>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
+ <OutputPath>bin\$(Configuration)\</OutputPath>
+ <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="Product.wxs" />
+ </ItemGroup>
+ <ItemGroup>
+ <WixExtension Include="WixUIExtension">
+ <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
+ </WixExtension>
+ </ItemGroup>
+ <ItemGroup>
+ <Folder Include="Bitmaps\" />
+ <Folder Include="Libraries\" />
+ </ItemGroup>
+ <ItemGroup>
+ <Content Include="Bitmaps\bannrbmp.bmp" />
+ <Content Include="Bitmaps\dlgbmp.bmp" />
+ <Content Include="Bitmaps\MonoDevelop.ico" />
+ <Content Include="Libraries\ICSharpCode.SharpZipLib.dll" />
+ <Content Include="Libraries\Mono.GetOptions.dll" />
+ <Content Include="Libraries\monodoc.dll" />
+ <Content Include="license.rtf" />
+ </ItemGroup>
+ <Import Project="$(WixTargetsPath)" />
+ <!--
+ To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Wix.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project> \ No newline at end of file
diff --git a/setup/WixSetup/license.rtf b/setup/WixSetup/license.rtf
new file mode 100644
index 0000000000..097b8eeb68
--- /dev/null
+++ b/setup/WixSetup/license.rtf
@@ -0,0 +1,342 @@
+{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Courier New;}}
+{\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\f0\fs22\tab\tab GNU GENERAL PUBLIC LICENSE\par
+\tab\tab Version 2, June 1991\par
+\par
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\par
+ 51 Franklin Street, 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
+\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
+License is intended to guarantee your freedom to share and change free\par
+software--to make sure the software is free for all its users. This\par
+General Public License applies to most of the Free Software\par
+Foundation's software and to any other program whose authors commit to\par
+using it. (Some other Free Software Foundation software is covered by\par
+the GNU Lesser General Public License instead.) You can apply it to\par
+your programs, too.\par
+\par
+ When we speak of free software, we are referring to freedom, not\par
+price. Our General Public Licenses are designed to make sure that you\par
+have the freedom to distribute copies of free software (and charge for\par
+this service if you wish), that you receive source code or can get it\par
+if you want it, that you can change the software or use pieces of it\par
+in new free programs; and that you know you can do these things.\par
+\par
+ To protect your rights, we need to make restrictions that forbid\par
+anyone to deny you these rights or to ask you to surrender the rights.\par
+These restrictions translate to certain responsibilities for you if you\par
+distribute copies of the software, or if you modify it.\par
+\par
+ For example, if you distribute copies of such a program, whether\par
+gratis or for a fee, you must give the recipients all the rights that\par
+you have. You must make sure that they, too, receive or can get the\par
+source code. And you must show them these terms so they know their\par
+rights.\par
+\par
+ We protect your rights with two steps: (1) copyright the software, and\par
+(2) offer you this license which gives you legal permission to copy,\par
+distribute and/or modify the software.\par
+\par
+ Also, for each author's protection and ours, we want to make certain\par
+that everyone understands that there is no warranty for this free\par
+software. If the software is modified by someone else and passed on, we\par
+want its recipients to know that what they have is not the original, so\par
+that any problems introduced by others will not reflect on the original\par
+authors' reputations.\par
+\par
+ Finally, any free program is threatened constantly by software\par
+patents. We wish to avoid the danger that redistributors of a free\par
+program will individually obtain patent licenses, in effect making the\par
+program proprietary. To prevent this, we have made it clear that any\par
+patent must be licensed for everyone's free use or not licensed at all.\par
+\par
+ The precise terms and conditions for copying, distribution and\par
+modification follow.\par
+\par
+\tab\tab GNU GENERAL PUBLIC LICENSE\par
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\par
+\par
+ 0. This License applies to any program or other work which contains\par
+a notice placed by the copyright holder saying it may be distributed\par
+under the terms of this General Public License. The "Program", below,\par
+refers to any such program or work, and a "work based on the Program"\par
+means either the Program or any derivative work under copyright law:\par
+that is to say, a work containing the Program or a portion of it,\par
+either verbatim or with modifications and/or translated into another\par
+language. (Hereinafter, translation is included without limitation in\par
+the term "modification".) Each licensee is addressed as "you".\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 the Program is not restricted, and the output from the Program\par
+is covered only if its contents constitute a work based on the\par
+Program (independent of having been made by running the Program).\par
+Whether that is true depends on what the Program does.\par
+\par
+ 1. You may copy and distribute verbatim copies of the Program's\par
+source code as you receive it, in any medium, provided that you\par
+conspicuously and appropriately publish on each copy an appropriate\par
+copyright notice and disclaimer of warranty; keep intact all the\par
+notices that refer to this License and to the absence of any warranty;\par
+and give any other recipients of the Program a copy of this License\par
+along with the Program.\par
+\par
+You may charge a fee for the physical act of transferring a copy, and\par
+you may at your option offer warranty protection in exchange for a fee.\par
+\par
+ 2. You may modify your copy or copies of the Program or any portion\par
+of it, thus forming a work based on the Program, 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) You must cause the modified files to carry prominent notices\par
+ stating that you changed the files and the date of any change.\par
+\par
+ b) You must cause any work that you distribute or publish, that in\par
+ whole or in part contains or is derived from the Program or any\par
+ part thereof, to be licensed as a whole at no charge to all third\par
+ parties under the terms of this License.\par
+\par
+ c) If the modified program normally reads commands interactively\par
+ when run, you must cause it, when started running for such\par
+ interactive use in the most ordinary way, to print or display an\par
+ announcement including an appropriate copyright notice and a\par
+ notice that there is no warranty (or else, saying that you provide\par
+ a warranty) and that users may redistribute the program under\par
+ these conditions, and telling the user how to view a copy of this\par
+ License. (Exception: if the Program itself is interactive but\par
+ does not normally print such an announcement, your work based on\par
+ the Program is not required to print an announcement.)\par
+\par
+These requirements apply to the modified work as a whole. If\par
+identifiable sections of that work are not derived from the Program,\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 Program, 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 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 Program.\par
+\par
+In addition, mere aggregation of another work not based on the Program\par
+with the Program (or with a work based on the Program) 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 copy and distribute the Program (or a work based on it,\par
+under Section 2) in object code or executable form under the terms of\par
+Sections 1 and 2 above provided that you also do one of the following:\par
+\par
+ a) Accompany it with the complete corresponding machine-readable\par
+ source code, which must be distributed under the terms of Sections\par
+ 1 and 2 above on a medium customarily used for software interchange; or,\par
+\par
+ b) Accompany it with a written offer, valid for at least three\par
+ years, to give any third party, for a charge no more than your\par
+ cost of physically performing source distribution, a complete\par
+ machine-readable copy of the corresponding source code, to be\par
+ distributed under the terms of Sections 1 and 2 above on a medium\par
+ customarily used for software interchange; or,\par
+\par
+ c) Accompany it with the information you received as to the offer\par
+ to distribute corresponding source code. (This alternative is\par
+ allowed only for noncommercial distribution and only if you\par
+ received the program in object code or executable form with such\par
+ an offer, in accord with Subsection b above.)\par
+\par
+The source code for a work means the preferred form of the work for\par
+making modifications to it. For an executable work, complete source\par
+code means all the source code for all modules it contains, plus any\par
+associated interface definition files, plus the scripts used to\par
+control compilation and installation of the executable. However, as a\par
+special exception, the source code distributed need not include\par
+anything that is normally distributed (in either source or binary\par
+form) with the major components (compiler, kernel, and so on) of the\par
+operating system on which the executable runs, unless that component\par
+itself accompanies the executable.\par
+\par
+If distribution of executable or object code is made by offering\par
+access to copy from a designated place, then offering equivalent\par
+access to copy the source code from the same place counts as\par
+distribution of the source code, even though third parties are not\par
+compelled to copy the source along with the object code.\par
+\par
+ 4. You may not copy, modify, sublicense, or distribute the Program\par
+except as expressly provided under this License. Any attempt\par
+otherwise to copy, modify, sublicense or distribute the Program is\par
+void, and will automatically terminate your rights under this License.\par
+However, parties who have received copies, or rights, from you under\par
+this License will not have their licenses terminated so long as such\par
+parties remain in full compliance.\par
+\par
+ 5. 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 Program 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 Program (or any work based on the\par
+Program), you indicate your acceptance of this License to do so, and\par
+all its terms and conditions for copying, distributing or modifying\par
+the Program or works based on it.\par
+\par
+ 6. Each time you redistribute the Program (or any work based on the\par
+Program), the recipient automatically receives a license from the\par
+original licensor to copy, distribute or modify the Program subject to\par
+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 to\par
+this License.\par
+\par
+ 7. 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 Program at all. For example, if a patent\par
+license would not permit royalty-free redistribution of the Program 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 Program.\par
+\par
+If any portion of this section is held invalid or unenforceable under\par
+any particular circumstance, the balance of the section is intended to\par
+apply and the section as a whole is intended to apply in other\par
+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
+ 8. If the distribution and/or use of the Program is restricted in\par
+certain countries either by patents or by copyrighted interfaces, the\par
+original copyright holder who places the Program under this License\par
+may add an explicit geographical distribution limitation excluding\par
+those countries, so that distribution is permitted only in or among\par
+countries not thus excluded. In such case, this License incorporates\par
+the limitation as if written in the body of this License.\par
+\par
+ 9. The Free Software Foundation may publish revised and/or new versions\par
+of the General Public License from time to time. Such new versions will\par
+be similar in spirit to the present version, but may differ in detail to\par
+address new problems or concerns.\par
+\par
+Each version is given a distinguishing version number. If the Program\par
+specifies a version number of this License which applies to it and "any\par
+later version", you have the option of following the terms and conditions\par
+either of that version or of any later version published by the Free\par
+Software Foundation. If the Program does not specify a version number of\par
+this License, you may choose any version ever published by the Free Software\par
+Foundation.\par
+\par
+ 10. If you wish to incorporate parts of the Program into other free\par
+programs whose distribution conditions are different, write to the author\par
+to ask for permission. For software which is copyrighted by the Free\par
+Software Foundation, write to the Free Software Foundation; we sometimes\par
+make exceptions for this. Our decision will be guided by the two goals\par
+of preserving the free status of all derivatives of our free software and\par
+of promoting the sharing and reuse of software generally.\par
+\par
+\tab\tab\tab NO WARRANTY\par
+\par
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\par
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\par
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\par
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\par
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\par
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\par
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\par
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\par
+REPAIR OR CORRECTION.\par
+\par
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\par
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\par
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\par
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\par
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\par
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\par
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\par
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\par
+POSSIBILITY OF SUCH DAMAGES.\par
+\par
+\tab\tab END OF TERMS AND CONDITIONS\par
+\par
+\tab How to Apply These Terms to Your New Programs\par
+\par
+ If you develop a new program, and you want it to be of the greatest\par
+possible use to the public, the best way to achieve this is to make it\par
+free software which everyone can redistribute and change under these terms.\par
+\par
+ To do so, attach the following notices to the program. It is safest\par
+to attach them to the start of each source file to most effectively\par
+convey the exclusion of warranty; and each file should have at least\par
+the "copyright" line and a pointer to where the full notice is found.\par
+\par
+ <one line to give the program's name and a brief idea of what it does.>\par
+ Copyright (C) <year> <name of author>\par
+\par
+ This program is free software; you can redistribute it and/or modify\par
+ it under the terms of the GNU General Public License as published by\par
+ the Free Software Foundation; either version 2 of the License, or\par
+ (at your option) any later version.\par
+\par
+ This program is distributed in the hope that it will be useful,\par
+ but WITHOUT ANY WARRANTY; without even the implied warranty of\par
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\par
+ GNU General Public License for more details.\par
+\par
+ You should have received a copy of the GNU General Public License along\par
+ with this program; if not, write to the Free Software Foundation, Inc.,\par
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\par
+\par
+Also add information on how to contact you by electronic and paper mail.\par
+\par
+If the program is interactive, make it output a short notice like this\par
+when it starts in an interactive mode:\par
+\par
+ Gnomovision version 69, Copyright (C) year name of author\par
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\par
+ This is free software, and you are welcome to redistribute it\par
+ under certain conditions; type `show c' for details.\par
+\par
+The hypothetical commands `show w' and `show c' should show the appropriate\par
+parts of the General Public License. Of course, the commands you use may\par
+be called something other than `show w' and `show c'; they could even be\par
+mouse-clicks or menu items--whatever suits your program.\par
+\par
+You should also get your employer (if you work as a programmer) or your\par
+school, if any, to sign a "copyright disclaimer" for the program, if\par
+necessary. Here is a sample; alter the names:\par
+\par
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program\par
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.\par
+\par
+ <signature of Ty Coon>, 1 April 1989\par
+ Ty Coon, President of Vice\par
+\par
+This General Public License does not permit incorporating your program into\par
+proprietary programs. If your program is a subroutine library, you may\par
+consider it more useful to permit linking proprietary applications with the\par
+library. If this is what you want to do, use the GNU Lesser General\par
+Public License instead of this License.\par
+}
+