diff --git a/Installers/Nsis/Build.Installer.Nsis.csproj b/Installers/Nsis/Build.Installer.Nsis.csproj
deleted file mode 100644
index 63940a27..00000000
--- a/Installers/Nsis/Build.Installer.Nsis.csproj
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
- .
-
-
- .
-
-
- .
-
-
- .
- AnyCPU
- false
-
-
- {ADC34399-7613-44D2-90B2-19250F06FE7A}
- v2.0
- Debug
- AnyCPU
- 10.0.0
- 2.0
- Exe
- Build.Installer.Nsis
-
-
- none
- False
- 4
-
-
- none
- False
- 4
-
-
- none
- False
- 4
-
-
- none
- False
- 4
-
-
- none
- false
- .
- 4
-
-
- none
- false
- .
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Installers/Nsis/opentk.nsi b/Installers/Nsis/opentk.nsi
deleted file mode 100644
index 08ab0944..00000000
--- a/Installers/Nsis/opentk.nsi
+++ /dev/null
@@ -1,247 +0,0 @@
-; Script generated by the HM NIS Edit Script Wizard.
-RequestExecutionLevel user
-
-!include x64.nsh
-!include WordFunc.nsh
-!insertmacro VersionCompare
-!include LogicLib.nsh
-
-SetCompressor /SOLID lzma
-
-; HM NIS Edit Wizard helper defines
-!define PRODUCT_NAME "OpenTK"
-!define PRODUCT_VERSION "1.1" ; To be replaced by Build.exe
-!define PRODUCT_PUBLISHER "The Open Toolkit team"
-!define PRODUCT_WEB_SITE "http://www.opentk.com"
-!define PRODUCT_UNINST_KEY "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
-!define DOTNET20_PUBLIC_ASSEMBLIES_KEY "SOFTWARE\Microsoft\.NETFramework\v2.0.50727\AssemblyFoldersEx\${PRODUCT_NAME} ${PRODUCT_VERSION}"
-
-!define MULTIUSER_EXECUTIONLEVEL User
-!define MULTIUSER_INSTALLMODE_DEFAULT_CURRENTUSER
-!define MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY "SHELL_CONTEXT"
-!define MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_VALUENAME "InstallDir"
-!define MULTIUSER_INSTALLMODE_INSTDIR_REGISTRY_KEY "SHELL_CONTEXT"
-!define MULTIUSER_INSTALLMODE_INSTDIR_REGISTRY_VALUENAME "InstallDir"
-!define MULTIUSER_INSTALLMODE_INSTDIR "${PRODUCT_NAME}\${PRODUCT_VERSION}"
-;!include MultiUser.nsh ; Doesn't really do what we need to (goes to AppData instead of Documents, no x64 support)
-
-; MUI 1.67 compatible ------
-!include "MUI.nsh"
-
-; MUI Settings
-!define MUI_ABORTWARNING
-!define MUI_ICON "..\..\Source\Examples\Resources\App.ico"
-!define MUI_UNICON "..\..\Source\Examples\Resources\App.ico"
-
-; Language Selection Dialog Settings
-!define MUI_LANGDLL_REGISTRY_ROOT "${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY}"
-!define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
-!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language"
-
-; Welcome page
-;!insertmacro MUI_PAGE_WELCOME
-; License page;
-!insertmacro MUI_PAGE_LICENSE "..\..\Documentation\License.txt"
-; Directory page
-!insertmacro MUI_PAGE_DIRECTORY
-; Components page
-!insertmacro MUI_PAGE_COMPONENTS
-; Instfiles page
-!insertmacro MUI_PAGE_INSTFILES
-; Finish page
-!insertmacro MUI_PAGE_FINISH
-
-; Uninstaller pages
-!insertmacro MUI_UNPAGE_INSTFILES
-
-; Language files
-!insertmacro MUI_LANGUAGE "English"
-
-; Reserve files
-!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
-
-; MUI END ------
-
-Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
-OutFile "opentk.exe"
-InstallDir "${MULTIUSER_INSTALLMODE_INSTDIR}"
-ShowInstDetails show
-ShowUnInstDetails show
-
-Function .onInit
- StrCpy $INSTDIR "$DOCUMENTS\${MULTIUSER_INSTALLMODE_INSTDIR}"
- !insertmacro MUI_LANGDLL_DISPLAY
-FunctionEnd
-
-; The "" makes the section hidden.
-Section "" SecUninstallPrevious
-
- Call UninstallPrevious
-
-SectionEnd
-
-Function UninstallPrevious
-
- ; Check for uninstaller.
- ReadRegStr $R0 ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString"
- ReadRegStr $R1 ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "InstallDir"
-
- ${If} $R0 == ""
- Goto Done
- ${EndIf}
-
- DetailPrint "Removing previous installation."
-
- ; Run the uninstaller silently.
- ; The "if" is necessary becaused older installer versions
- ; did not set "InstallDir".
- CopyFiles "$R0" "$TEMP\uninst.exe"
- ${If} $R1 != ""
- ExecWait '$TEMP\uninst.exe /S _?=$R1'
- ${Else}
- Push $R0
- Call GetParent
- Pop $R0
- ExecWait '$TEMP\uninst.exe /S _?=$R0'
- ${EndIf}
-
- Done:
-
-FunctionEnd
-
- ; GetParent
- ; input, top of stack (e.g. C:\Program Files\Poop)
- ; output, top of stack (replaces, with e.g. C:\Program Files)
- ; modifies no other variables.
- ;
- ; Usage:
- ; Push "C:\Program Files\Directory\Whatever"
- ; Call GetParent
- ; Pop $R0
- ; ; at this point $R0 will equal "C:\Program Files\Directory"
- Function GetParent
-
- Exch $R0
- Push $R1
- Push $R2
- Push $R3
-
- StrCpy $R1 0
- StrLen $R2 $R0
-
- loop:
- IntOp $R1 $R1 + 1
- IntCmp $R1 $R2 get 0 get
- StrCpy $R3 $R0 1 -$R1
- StrCmp $R3 "\" get
- Goto loop
-
- get:
- StrCpy $R0 $R0 -$R1
-
- Pop $R3
- Pop $R2
- Pop $R1
- Exch $R0
-
-FunctionEnd
-
-Section "Core library" SEC01
- SectionIn RO
-
- ${If} $INSTDIR == $PROGRAMFILES
- ${OrIf} $INSTDIR == $DOCUMENTS
- ${OrIf} $INSTDIR == $DESKTOP
- ${OrIf} $INSTDIR == $WINDIR
- ${OrIf} $INSTDIR == $SYSDIR
- ${OrIf} $INSTDIR == $PROFILE
- MessageBox MB_OK "Cannot install directly under $INSTDIR. Please specify a subfolder."
- Abort
- ${EndIf}
-
- SetOutPath $INSTDIR
- File /r /x *.vshost.exe /x *.vshost.exe.manifest /x *.log ..\..\Binaries
- File /r /x .svn /x obj /x Source /x Source\*.* ..\..\Documentation
- File /r ..\..\Dependencies
- SetOutPath $INSTDIR\Source\Examples
- File /r /x .svn /x obj /x *.snk /x *.user /x *.pidb /x html /x latex /x OpenTK*.xml ..\..\Source\Examples
-SectionEnd
-
-Section "Source code" SEC02
- SetOutPath $INSTDIR
- File /r /x .svn /x obj /x *.snk /x *.user /x *.pidb /x html /x latex /x OpenTK*.xml ..\..\Source
- File /r /x .svn ..\..\*.csproj
- File ..\..\*.sln
- File ..\..\OpenTK.snk
- File /r /x .svn /x obj /x lib /x bin /x opentk /x opentk-actual.* /x *.exe /x *.msi /x *.deb /x *.rpm /x *.zip /x *.nupkg ..\..\Installers
-SectionEnd
-
-Section -AdditionalIcons
- SetOutPath $INSTDIR
- CreateDirectory "$SMPROGRAMS\OpenTK"
-
- SetOutPath "$INSTDIR\Binaries\OpenTK\Release" ; Make sure the working directory is correct
- CreateShortCut "$SMPROGRAMS\OpenTK\OpenTK Example Browser.lnk" "$INSTDIR\Binaries\OpenTK\Release\Examples.exe"
- SetOutPath $INSTDIR
-
- CreateShortCut "$SMPROGRAMS\OpenTK\OpenGL Reference.lnk" "$INSTDIR\Documentation\OpenGL 4.4 API Reference.pdf"
- CreateShortCut "$SMPROGRAMS\OpenTK\Documentation.lnk" "$INSTDIR\Documentation\"
-SectionEnd
-
-Section -Post
- ${If} ${RunningX64}
- SetRegView 64
- ${EndIf}
- WriteUninstaller "$INSTDIR\uninst.exe"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "InstallDir" "$INSTDIR"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
- WriteRegStr ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${DOTNET20_PUBLIC_ASSEMBLIES_KEY}" "" "$INSTDIR\Binaries\OpenTK\Release"
-SectionEnd
-
-LangString DESC_Section1 ${LANG_ENGLISH} "Installs the Open Toolkit library, documentation and samples."
-LangString DESC_Section2 ${LANG_ENGLISH} "Installs the source code for the Open Toolkit library."
-
-!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
- !insertmacro MUI_DESCRIPTION_TEXT ${SEC01} $(DESC_Section1)
- !insertmacro MUI_DESCRIPTION_TEXT ${SEC02} $(DESC_Section2)
-!insertmacro MUI_FUNCTION_DESCRIPTION_END
-
-Function un.onUninstSuccess
- HideWindow
-FunctionEnd
-
-Function un.onInit
- !insertmacro MUI_UNGETLANGUAGE
- IfSilent +3
- MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you wish to completely uninstall $(^Name) and all of its components?" IDYES +2
- Abort
-FunctionEnd
-
-Section Uninstall
- ${If} ${RunningX64}
- SetRegView 64
- ${EndIf}
-
- Delete "$INSTDIR\${PRODUCT_NAME}.url"
- Delete "$INSTDIR\uninst.exe"
-
- RMDir /r "$SMPROGRAMS\OpenTK"
-
- Delete "$INSTDIR\*.sln"
- Delete "$INSTDIR\Build.exe"
- Delete "$INSTDIR\*.log"
- RMDir /r "$INSTDIR\Installers"
- RMDir /r "$INSTDIR\Source"
- RMDir /r "$INSTDIR\Documentation"
- RMDir /r "$INSTDIR\Binaries"
- RMDir "$INSTDIR"
-
-
- DeleteRegKey ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${PRODUCT_UNINST_KEY}"
- DeleteRegKey ${MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY} "${DOTNET20_PUBLIC_ASSEMBLIES_KEY}"
- SetAutoClose true
-SectionEnd
diff --git a/Installers/Nuget/Build.Installer.Nuget.csproj b/Installers/Nuget/Build.Installer.Nuget.csproj
deleted file mode 100644
index 1a779b1d..00000000
--- a/Installers/Nuget/Build.Installer.Nuget.csproj
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
- .\obj\
-
-
- .\obj\
-
-
- .\obj\
-
-
- .\obj\
-
-
- {ADC34399-7613-44D2-90B2-19250F12FE7B}
- v2.0
- .\obj\
- Debug
- AnyCPU
- 10.0.0
- 2.0
- Exe
- Build.Installer.Nuget
-
-
- none
- False
- obj\
- 4
-
-
- none
- False
- obj\
- 4
-
-
- none
- False
- obj\
- 4
-
-
- none
- False
- obj\
- 4
-
-
- none
- false
- obj\
- 4
-
-
- none
- false
- obj\
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Installers/Nuget/OpenTK.Next.GLControl.nuspec b/Installers/Nuget/OpenTK.Next.GLControl.nuspec
deleted file mode 100644
index b56aa90c..00000000
--- a/Installers/Nuget/OpenTK.Next.GLControl.nuspec
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
- OpenTK.Next.GLControl
- $version$
- The Open Toolkit Team
- The Open Toolkit Team
- http://www.opentk.com/project/license
- http://www.opentk.com
- file:///./logo.png
- false
-
- Add OpenGL graphics to your Windows.Forms or WPF application
-
-
- This package is community-run and supercedes the old OpenTK.GLControl package.
-
- OpenTK.GLControl is a Windows.Forms Control with OpenGL rendering capabilities. Use it to add
- accelerated 3d graphics to your Windows.Forms or Windows Presentation Foundation (WPF) application.
-
- Features
- - Integrate 3d graphics into your Windows.Forms or WPF application
- - Use the .Net/Mono language of your choice: C#, F#, VB.Net, Boo, IronPython, IronRuby
- - Develop faster with inline documentation and strongly-typed enumerations for all OpenGL and OpenAL functions
-
- This is the official nuget package from http://www.opentk.com
- The source code can be found at https://github.com/opentk/opentk
-
-
- http://www.opentk.com/news
-
- Copyright 2006-2013 Stefanos Apostolopoulos
- OpenTK OpenGL WinForms WPF C# F# VB .Net Mono
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Installers/Nuget/OpenTK.Next.nuspec b/Installers/Nuget/OpenTK.Next.nuspec
deleted file mode 100644
index b3fbe019..00000000
--- a/Installers/Nuget/OpenTK.Next.nuspec
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
- OpenTK.Next
- $version$
- The Open Toolkit Team
- The Open Toolkit Team
- http://www.opentk.com/project/license
- http://www.opentk.com
- file:///./logo.png
- false
-
- The Open Toolkit library (OpenTK) is an advanced, low-level C# wrapper for OpenGL, OpenGL ES and OpenAL.
-
-
- This package is community-run and supercedes the old OpenTK package.
-
- The Open Toolkit library (OpenTK) is an advanced, low-level C# wrapper for OpenGL, OpenGL ES and OpenAL.
- It is suitable for games, scientific visualizations and projects that require 3d graphics, audio or compute functionality.
-
- Features
- - Create cutting-edge graphics with OpenGL 4.4 and OpenGL ES 3.0
- - Integrate 3d graphics into your Windows.Forms, WPF or GTK# applications
- - Write once run everywhere: Windows, Mac OS X, Linux, Android and iOS
- - Use the .Net/Mono language of your choice: C#, F#, VB.Net, Boo, IronPython, IronRuby
- - Develop faster with inline documentation and strongly-typed enumerations for all OpenGL and OpenAL functions
-
- This is the official nuget package from http://www.opentk.com
- The source code can be found at https://github.com/opentk/opentk
-
-
- http://www.opentk.com/news
-
- Copyright 2006-2013 Stefanos Apostolopoulos
- OpenTK OpenGL OpenGLES OpenAL C# F# VB .Net Mono
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Installers/Nuget/logo.png b/Installers/Nuget/logo.png
deleted file mode 100644
index 43bdc617..00000000
Binary files a/Installers/Nuget/logo.png and /dev/null differ
diff --git a/Installers/Nuget/nuget.exe b/Installers/Nuget/nuget.exe
deleted file mode 100644
index 8f613402..00000000
Binary files a/Installers/Nuget/nuget.exe and /dev/null differ
diff --git a/Installers/Zip/Build.Installer.Zip.csproj b/Installers/Zip/Build.Installer.Zip.csproj
deleted file mode 100644
index a2d41566..00000000
--- a/Installers/Zip/Build.Installer.Zip.csproj
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
- .\opentk\
-
-
- .\opentk\
-
-
- .\opentk\
-
-
- .\opentk\
-
-
- {ADC34399-7613-44D2-90B2-19250F06FE7B}
- v2.0
- .\opentk\
- Debug
- AnyCPU
- 10.0.0
- 2.0
- Exe
- Build.Installer.Zip
-
-
- none
- False
- opentk\
- 4
-
-
- none
- False
- opentk\
- 4
-
-
- none
- False
- opentk\
- 4
-
-
- none
- False
- opentk\
- 4
-
-
- none
- false
- opentk\
- 4
-
-
- none
- false
- opentk\
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-