diff --git a/ImageProcessor.sln b/ImageProcessor.sln new file mode 100644 index 000000000..340f1858e --- /dev/null +++ b/ImageProcessor.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.31101.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageProcessor", "src\ImageProcessor\ImageProcessor.csproj", "{8047C4AC-7097-4DE4-B00D-6D55EBCF1D36}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8047C4AC-7097-4DE4-B00D-6D55EBCF1D36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8047C4AC-7097-4DE4-B00D-6D55EBCF1D36}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8047C4AC-7097-4DE4-B00D-6D55EBCF1D36}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8047C4AC-7097-4DE4-B00D-6D55EBCF1D36}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/old/.gitattributes b/old/.gitattributes new file mode 100644 index 000000000..a664be3a8 --- /dev/null +++ b/old/.gitattributes @@ -0,0 +1,49 @@ +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain + +*.jpg binary +*.png binary +*.gif binary + +*.cs text=auto diff=csharp +*.vb text=auto +*.c text=auto +*.cpp text=auto +*.cxx text=auto +*.h text=auto +*.hxx text=auto +*.py text=auto +*.rb text=auto +*.java text=auto +*.html text=auto +*.htm text=auto +*.css text=auto +*.scss text=auto +*.sass text=auto +*.less text=auto +*.js text=auto +*.lisp text=auto +*.clj text=auto +*.sql text=auto +*.php text=auto +*.lua text=auto +*.m text=auto +*.asm text=auto +*.erl text=auto +*.fs text=auto +*.fsx text=auto +*.hs text=auto + +*.csproj text=auto merge=union +*.vbproj text=auto merge=union +*.fsproj text=auto merge=union +*.dbproj text=auto merge=union +*.sln text=auto eol=crlf merge=union diff --git a/old/.gitignore b/old/.gitignore new file mode 100644 index 000000000..3fd18e8e1 --- /dev/null +++ b/old/.gitignore @@ -0,0 +1,173 @@ +################# +## Eclipse +################# + +*.pydevproject +.project +.metadata +bin/** +tmp/** +tmp/**/* +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + + +################# +## Visual Studio +################# + +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results +**/[Dd]ebug/ +**/[Rr]elease/ +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.vspscc +.builds +**/*.dotCover + +# Xamarin +*.userprefs + +## TODO: If you have NuGet Package Restore enabled, uncomment this +packages/ + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf + +# Visual Studio profiler +*.psess +*.vsp + +# ReSharper is a .NET coding add-in +_ReSharper* + +# Installshield output folder +[Ee]xpress + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish + +# Others +[Bb]in +[Oo]bj +sql +TestResults +*.Cache +ClientBin +stylecop.* +~$* +*.dbmdl +Generated_Code #added for RIA/Silverlight projects + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML + + + +############ +## Windows +############ + +# Windows image file caches +Thumbs.db + +# Folder config file +Desktop.ini + + +############# +## Python +############# + +*.py[co] + +# Packages +*.egg +*.egg-info +dist +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg + +# Mac crap +.DS_Store + +build/_BuildOutput/ +build/*.nupkg +build/TestResult.xml +*.db + +_site/ \ No newline at end of file diff --git a/old/APACHE-2.0-LICENSE.txt b/old/APACHE-2.0-LICENSE.txt new file mode 100644 index 000000000..a666c6e07 --- /dev/null +++ b/old/APACHE-2.0-LICENSE.txt @@ -0,0 +1,13 @@ +Copyright 2012 James South + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/old/README.md b/old/README.md new file mode 100644 index 000000000..5ed8112fc --- /dev/null +++ b/old/README.md @@ -0,0 +1,49 @@ +# ImageProcessor + +### Build Status + +|Branch | | +|:--------|:--------| +|**Debug**|[![Build status](https://ci.appveyor.com/api/projects/status/8ypr7527dnao04yr?svg=true)](https://ci.appveyor.com/project/JamesSouth/imageprocessor)| +|**Release**|[![Build status](https://ci.appveyor.com/api/projects/status/8ypr7527dnao04yr/branch/Master?svg=true)](https://ci.appveyor.com/project/JamesSouth/imageprocessor/branch/Master)| +|**Coverage Report**|[![Coverage Status](https://coveralls.io/repos/JimBobSquarePants/ImageProcessor/badge.svg)](https://coveralls.io/r/JimBobSquarePants/ImageProcessor?branch=V2)| + +### Latest Releases +|Library |Version |Downloads | +|:-----------------|:-----------------|:-----------------| +|**ImageProcessor**|[![Nuget count](http://img.shields.io/nuget/v/ImageProcessor.svg)](https://www.nuget.org/packages/ImageProcessor/)|[![Nuget downloads](http://img.shields.io/nuget/dt/ImageProcessor.svg)](https://www.nuget.org/packages/ImageProcessor/)| +|**ImageProcessor.Web**|[![Nuget count](http://img.shields.io/nuget/v/ImageProcessor.Web.svg)](https://www.nuget.org/packages/ImageProcessor.Web/)|[![Nuget downloads](http://img.shields.io/nuget/dt/ImageProcessor.Web.svg)](https://www.nuget.org/packages/ImageProcessor.Web/)| + +[![Issues open](http://img.shields.io/github/issues-raw/JimBobSquarePants/imageprocessor.svg)](https://huboard.com/JimBobSquarePants/ImageProcessor/) +[![Source Browser](https://img.shields.io/badge/Browse-Source-green.svg)](http://sourcebrowser.io/Browse/JimBobSquarePants/ImageProcessor/) +[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/JimBobSquarePants/ImageProcessor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + +Imageprocessor is a lightweight, extensible library written in C# that allows you to manipulate images on-the-fly using .NET 4.5+ + +It's fast, extensible, easy to use, comes bundled with some great features and is fully open source. + +For full documentation please see [http://imageprocessor.org/](http://imageprocessor.org/) + +## Contributing to ImageProcessor +Contribution is most welcome! I mean, that's what this is all about isn't it? + +Things I would :heart: people to help me out with: + + - Unit tests. I need to get some going for all the regular expressions within the ImageProcessor core plus anywhere else we can think of. If that's your bag please contribute. + - Documentation. Nobody likes doing docs, I've written a lot but my prose is clumsy and verbose. If you think you can make things clearer or you spot any mistakes please submit a pull request (Guide to how the docs work below). + +**Just remember to StyleCop all things! :oncoming_police_car:** + +## RoadMap +I want the next version of ImageProcessor to run on all devices. Sadly it looks like using `System.Drawing` will not allow me to do that so I need to have a look at using an alternative. This is a lot of work so any help that could be offered would be greatly appreciated. + +## Documentation + +ImageProcessor's documentation, included in this repo in the gh-pages branch, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at . The docs may also be run locally. + +### Running documentation locally +1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v2.2.x). + - **Windows users:** Read [this unofficial guide](https://github.com/juthilo/run-jekyll-on-windows/) to get Jekyll up and running without problems. +2. From the root `/ImageProcessor` directory, run `jekyll serve` in the command line. +3. Open in your browser to navigate to your site. +Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/). diff --git a/appveyor.yml b/old/appveyor.yml similarity index 100% rename from appveyor.yml rename to old/appveyor.yml diff --git a/build/Build.bat b/old/build/Build.bat similarity index 100% rename from build/Build.bat rename to old/build/Build.bat diff --git a/build/Doxyfile.REMOVED.git-id b/old/build/Doxyfile.REMOVED.git-id similarity index 100% rename from build/Doxyfile.REMOVED.git-id rename to old/build/Doxyfile.REMOVED.git-id diff --git a/build/ImageProcessorDoc.shfbproj b/old/build/ImageProcessorDoc.shfbproj similarity index 100% rename from build/ImageProcessorDoc.shfbproj rename to old/build/ImageProcessorDoc.shfbproj diff --git a/build/NuSpecs/ImageProcessor.Plugins.Cair.nuspec b/old/build/NuSpecs/ImageProcessor.Plugins.Cair.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.Plugins.Cair.nuspec rename to old/build/NuSpecs/ImageProcessor.Plugins.Cair.nuspec diff --git a/build/NuSpecs/ImageProcessor.Plugins.WebP.nuspec b/old/build/NuSpecs/ImageProcessor.Plugins.WebP.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.Plugins.WebP.nuspec rename to old/build/NuSpecs/ImageProcessor.Plugins.WebP.nuspec diff --git a/build/NuSpecs/ImageProcessor.Web.Config.nuspec b/old/build/NuSpecs/ImageProcessor.Web.Config.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.Web.Config.nuspec rename to old/build/NuSpecs/ImageProcessor.Web.Config.nuspec diff --git a/build/NuSpecs/ImageProcessor.Web.Plugins.AzureBlobCache.nuspec b/old/build/NuSpecs/ImageProcessor.Web.Plugins.AzureBlobCache.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.Web.Plugins.AzureBlobCache.nuspec rename to old/build/NuSpecs/ImageProcessor.Web.Plugins.AzureBlobCache.nuspec diff --git a/build/NuSpecs/ImageProcessor.Web.PostProcessor.nuspec b/old/build/NuSpecs/ImageProcessor.Web.PostProcessor.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.Web.PostProcessor.nuspec rename to old/build/NuSpecs/ImageProcessor.Web.PostProcessor.nuspec diff --git a/build/NuSpecs/ImageProcessor.Web.nuspec b/old/build/NuSpecs/ImageProcessor.Web.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.Web.nuspec rename to old/build/NuSpecs/ImageProcessor.Web.nuspec diff --git a/build/NuSpecs/ImageProcessor.nuspec b/old/build/NuSpecs/ImageProcessor.nuspec similarity index 100% rename from build/NuSpecs/ImageProcessor.nuspec rename to old/build/NuSpecs/ImageProcessor.nuspec diff --git a/build/build.ps1 b/old/build/build.ps1 similarity index 100% rename from build/build.ps1 rename to old/build/build.ps1 diff --git a/build/build.xml b/old/build/build.xml similarity index 100% rename from build/build.xml rename to old/build/build.xml diff --git a/build/content/ImageProcessor.Plugins.WebP/web.config.transform b/old/build/content/ImageProcessor.Plugins.WebP/web.config.transform similarity index 100% rename from build/content/ImageProcessor.Plugins.WebP/web.config.transform rename to old/build/content/ImageProcessor.Plugins.WebP/web.config.transform diff --git a/build/content/ImageProcessor.Web.Config/web.config.transform b/old/build/content/ImageProcessor.Web.Config/web.config.transform similarity index 100% rename from build/content/ImageProcessor.Web.Config/web.config.transform rename to old/build/content/ImageProcessor.Web.Config/web.config.transform diff --git a/build/content/ImageProcessor.Web.Plugins.AzureBlobCache/config/imageprocessor/cache.config.transform b/old/build/content/ImageProcessor.Web.Plugins.AzureBlobCache/config/imageprocessor/cache.config.transform similarity index 100% rename from build/content/ImageProcessor.Web.Plugins.AzureBlobCache/config/imageprocessor/cache.config.transform rename to old/build/content/ImageProcessor.Web.Plugins.AzureBlobCache/config/imageprocessor/cache.config.transform diff --git a/build/content/ImageProcessor.Web/web.config.transform b/old/build/content/ImageProcessor.Web/web.config.transform similarity index 100% rename from build/content/ImageProcessor.Web/web.config.transform rename to old/build/content/ImageProcessor.Web/web.config.transform diff --git a/build/coverage.bat b/old/build/coverage.bat similarity index 100% rename from build/coverage.bat rename to old/build/coverage.bat diff --git a/build/psake.psm1 b/old/build/psake.psm1 similarity index 100% rename from build/psake.psm1 rename to old/build/psake.psm1 diff --git a/build/tools/NUnitHTMLReportGenerator.exe.REMOVED.git-id b/old/build/tools/NUnitHTMLReportGenerator.exe.REMOVED.git-id similarity index 100% rename from build/tools/NUnitHTMLReportGenerator.exe.REMOVED.git-id rename to old/build/tools/NUnitHTMLReportGenerator.exe.REMOVED.git-id diff --git a/build/tools/NUnitHTMLReportGenerator.exe.config b/old/build/tools/NUnitHTMLReportGenerator.exe.config similarity index 100% rename from build/tools/NUnitHTMLReportGenerator.exe.config rename to old/build/tools/NUnitHTMLReportGenerator.exe.config diff --git a/build/tools/docu/Interop.SparkLanguagePackageLib.dll b/old/build/tools/docu/Interop.SparkLanguagePackageLib.dll similarity index 100% rename from build/tools/docu/Interop.SparkLanguagePackageLib.dll rename to old/build/tools/docu/Interop.SparkLanguagePackageLib.dll diff --git a/build/tools/docu/Spark.dll.REMOVED.git-id b/old/build/tools/docu/Spark.dll.REMOVED.git-id similarity index 100% rename from build/tools/docu/Spark.dll.REMOVED.git-id rename to old/build/tools/docu/Spark.dll.REMOVED.git-id diff --git a/build/tools/docu/SparkLanguage.dll b/old/build/tools/docu/SparkLanguage.dll similarity index 100% rename from build/tools/docu/SparkLanguage.dll rename to old/build/tools/docu/SparkLanguage.dll diff --git a/build/tools/docu/StructureMap.dll.REMOVED.git-id b/old/build/tools/docu/StructureMap.dll.REMOVED.git-id similarity index 100% rename from build/tools/docu/StructureMap.dll.REMOVED.git-id rename to old/build/tools/docu/StructureMap.dll.REMOVED.git-id diff --git a/build/tools/docu/docu.exe.REMOVED.git-id b/old/build/tools/docu/docu.exe.REMOVED.git-id similarity index 100% rename from build/tools/docu/docu.exe.REMOVED.git-id rename to old/build/tools/docu/docu.exe.REMOVED.git-id diff --git a/build/tools/docu/docu.exe.config b/old/build/tools/docu/docu.exe.config similarity index 100% rename from build/tools/docu/docu.exe.config rename to old/build/tools/docu/docu.exe.config diff --git a/build/tools/docu/templates/!namespace/!type.htm.spark b/old/build/tools/docu/templates/!namespace/!type.htm.spark similarity index 100% rename from build/tools/docu/templates/!namespace/!type.htm.spark rename to old/build/tools/docu/templates/!namespace/!type.htm.spark diff --git a/build/tools/docu/templates/!namespace/_comment.spark b/old/build/tools/docu/templates/!namespace/_comment.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_comment.spark rename to old/build/tools/docu/templates/!namespace/_comment.spark diff --git a/build/tools/docu/templates/!namespace/_events.spark b/old/build/tools/docu/templates/!namespace/_events.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_events.spark rename to old/build/tools/docu/templates/!namespace/_events.spark diff --git a/build/tools/docu/templates/!namespace/_example.spark b/old/build/tools/docu/templates/!namespace/_example.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_example.spark rename to old/build/tools/docu/templates/!namespace/_example.spark diff --git a/build/tools/docu/templates/!namespace/_fields.spark b/old/build/tools/docu/templates/!namespace/_fields.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_fields.spark rename to old/build/tools/docu/templates/!namespace/_fields.spark diff --git a/build/tools/docu/templates/!namespace/_methods.spark b/old/build/tools/docu/templates/!namespace/_methods.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_methods.spark rename to old/build/tools/docu/templates/!namespace/_methods.spark diff --git a/build/tools/docu/templates/!namespace/_namespaces.spark b/old/build/tools/docu/templates/!namespace/_namespaces.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_namespaces.spark rename to old/build/tools/docu/templates/!namespace/_namespaces.spark diff --git a/build/tools/docu/templates/!namespace/_properties.spark b/old/build/tools/docu/templates/!namespace/_properties.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_properties.spark rename to old/build/tools/docu/templates/!namespace/_properties.spark diff --git a/build/tools/docu/templates/!namespace/_remarks.spark b/old/build/tools/docu/templates/!namespace/_remarks.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_remarks.spark rename to old/build/tools/docu/templates/!namespace/_remarks.spark diff --git a/build/tools/docu/templates/!namespace/_types.spark b/old/build/tools/docu/templates/!namespace/_types.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_types.spark rename to old/build/tools/docu/templates/!namespace/_types.spark diff --git a/build/tools/docu/templates/!namespace/_value.spark b/old/build/tools/docu/templates/!namespace/_value.spark similarity index 100% rename from build/tools/docu/templates/!namespace/_value.spark rename to old/build/tools/docu/templates/!namespace/_value.spark diff --git a/build/tools/docu/templates/!namespace/index.htm.spark b/old/build/tools/docu/templates/!namespace/index.htm.spark similarity index 100% rename from build/tools/docu/templates/!namespace/index.htm.spark rename to old/build/tools/docu/templates/!namespace/index.htm.spark diff --git a/build/tools/docu/templates/_common_footer.spark b/old/build/tools/docu/templates/_common_footer.spark similarity index 100% rename from build/tools/docu/templates/_common_footer.spark rename to old/build/tools/docu/templates/_common_footer.spark diff --git a/build/tools/docu/templates/_namespaces.spark b/old/build/tools/docu/templates/_namespaces.spark similarity index 100% rename from build/tools/docu/templates/_namespaces.spark rename to old/build/tools/docu/templates/_namespaces.spark diff --git a/build/tools/docu/templates/_types.spark b/old/build/tools/docu/templates/_types.spark similarity index 100% rename from build/tools/docu/templates/_types.spark rename to old/build/tools/docu/templates/_types.spark diff --git a/build/tools/docu/templates/index.htm.spark b/old/build/tools/docu/templates/index.htm.spark similarity index 100% rename from build/tools/docu/templates/index.htm.spark rename to old/build/tools/docu/templates/index.htm.spark diff --git a/build/tools/docu/templates/js/example.js b/old/build/tools/docu/templates/js/example.js similarity index 100% rename from build/tools/docu/templates/js/example.js rename to old/build/tools/docu/templates/js/example.js diff --git a/build/tools/docu/templates/js/jquery-1.3.2.min.js b/old/build/tools/docu/templates/js/jquery-1.3.2.min.js similarity index 100% rename from build/tools/docu/templates/js/jquery-1.3.2.min.js rename to old/build/tools/docu/templates/js/jquery-1.3.2.min.js diff --git a/build/tools/docu/templates/js/jquery.scrollTo-min.js b/old/build/tools/docu/templates/js/jquery.scrollTo-min.js similarity index 100% rename from build/tools/docu/templates/js/jquery.scrollTo-min.js rename to old/build/tools/docu/templates/js/jquery.scrollTo-min.js diff --git a/build/tools/docu/templates/js/navigation.js b/old/build/tools/docu/templates/js/navigation.js similarity index 100% rename from build/tools/docu/templates/js/navigation.js rename to old/build/tools/docu/templates/js/navigation.js diff --git a/build/tools/docu/templates/main.css b/old/build/tools/docu/templates/main.css similarity index 100% rename from build/tools/docu/templates/main.css rename to old/build/tools/docu/templates/main.css diff --git a/build/tools/doxygen/doxygen.exe.REMOVED.git-id b/old/build/tools/doxygen/doxygen.exe.REMOVED.git-id similarity index 100% rename from build/tools/doxygen/doxygen.exe.REMOVED.git-id rename to old/build/tools/doxygen/doxygen.exe.REMOVED.git-id diff --git a/build/tools/doxygen/doxyindexer.exe.REMOVED.git-id b/old/build/tools/doxygen/doxyindexer.exe.REMOVED.git-id similarity index 100% rename from build/tools/doxygen/doxyindexer.exe.REMOVED.git-id rename to old/build/tools/doxygen/doxyindexer.exe.REMOVED.git-id diff --git a/build/tools/doxygen/doxysearch.cgi.REMOVED.git-id b/old/build/tools/doxygen/doxysearch.cgi.REMOVED.git-id similarity index 100% rename from build/tools/doxygen/doxysearch.cgi.REMOVED.git-id rename to old/build/tools/doxygen/doxysearch.cgi.REMOVED.git-id diff --git a/src/.nuget/NuGet.Config b/old/src/.nuget/NuGet.Config similarity index 100% rename from src/.nuget/NuGet.Config rename to old/src/.nuget/NuGet.Config diff --git a/src/.nuget/NuGet.exe.REMOVED.git-id b/old/src/.nuget/NuGet.exe.REMOVED.git-id similarity index 100% rename from src/.nuget/NuGet.exe.REMOVED.git-id rename to old/src/.nuget/NuGet.exe.REMOVED.git-id diff --git a/src/.nuget/NuGet.targets b/old/src/.nuget/NuGet.targets similarity index 100% rename from src/.nuget/NuGet.targets rename to old/src/.nuget/NuGet.targets diff --git a/src/.nuget/packages.config b/old/src/.nuget/packages.config similarity index 100% rename from src/.nuget/packages.config rename to old/src/.nuget/packages.config diff --git a/src/ImageProcessor.Playground/App.config b/old/src/ImageProcessor.Playground/App.config similarity index 100% rename from src/ImageProcessor.Playground/App.config rename to old/src/ImageProcessor.Playground/App.config diff --git a/src/ImageProcessor.Playground/ImageProcessor.Playground.csproj b/old/src/ImageProcessor.Playground/ImageProcessor.Playground.csproj similarity index 100% rename from src/ImageProcessor.Playground/ImageProcessor.Playground.csproj rename to old/src/ImageProcessor.Playground/ImageProcessor.Playground.csproj diff --git a/src/ImageProcessor.Playground/Program.cs b/old/src/ImageProcessor.Playground/Program.cs similarity index 100% rename from src/ImageProcessor.Playground/Program.cs rename to old/src/ImageProcessor.Playground/Program.cs diff --git a/src/ImageProcessor.Playground/Properties/AssemblyInfo.cs b/old/src/ImageProcessor.Playground/Properties/AssemblyInfo.cs similarity index 100% rename from src/ImageProcessor.Playground/Properties/AssemblyInfo.cs rename to old/src/ImageProcessor.Playground/Properties/AssemblyInfo.cs diff --git a/src/ImageProcessor.Playground/images/input/000.png b/old/src/ImageProcessor.Playground/images/input/000.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/000.png rename to old/src/ImageProcessor.Playground/images/input/000.png diff --git a/src/ImageProcessor.Playground/images/input/001.png b/old/src/ImageProcessor.Playground/images/input/001.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/001.png rename to old/src/ImageProcessor.Playground/images/input/001.png diff --git a/src/ImageProcessor.Playground/images/input/120430.gif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/120430.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/120430.gif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/120430.gif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/1aaa.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/1aaa.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/1aaa.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/1aaa.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/2006-citybus.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/2006-citybus.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/2006-citybus.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/2006-citybus.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/2008.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/2008.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/2008.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/2008.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/2012-citybus.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/2012-citybus.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/2012-citybus.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/2012-citybus.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/4.sm.webp b/old/src/ImageProcessor.Playground/images/input/4.sm.webp similarity index 100% rename from src/ImageProcessor.Playground/images/input/4.sm.webp rename to old/src/ImageProcessor.Playground/images/input/4.sm.webp diff --git a/src/ImageProcessor.Playground/images/input/Arc-de-Triomphe-France.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/Arc-de-Triomphe-France.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/Arc-de-Triomphe-France.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/Arc-de-Triomphe-France.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/Bikesgray.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/Bikesgray.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/Bikesgray.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/Bikesgray.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/Calliphora_sp_Portrait.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/Calliphora_sp_Portrait.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/Calliphora_sp_Portrait.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/Calliphora_sp_Portrait.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/IC580196.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/IC580196.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/IC580196.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/IC580196.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/Martin-Schoeller-Jack-Nicholson-Portrait.jpeg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/Martin-Schoeller-Jack-Nicholson-Portrait.jpeg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/Martin-Schoeller-Jack-Nicholson-Portrait.jpeg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/Martin-Schoeller-Jack-Nicholson-Portrait.jpeg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/PIA11667_modest.jpg b/old/src/ImageProcessor.Playground/images/input/PIA11667_modest.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/PIA11667_modest.jpg rename to old/src/ImageProcessor.Playground/images/input/PIA11667_modest.jpg diff --git a/src/ImageProcessor.Playground/images/input/Tl4Yb.gif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/Tl4Yb.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/Tl4Yb.gif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/Tl4Yb.gif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/Turtle.jpg b/old/src/ImageProcessor.Playground/images/input/Turtle.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/Turtle.jpg rename to old/src/ImageProcessor.Playground/images/input/Turtle.jpg diff --git a/src/ImageProcessor.Playground/images/input/Valve_original_(1).PNG.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/Valve_original_(1).PNG.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/Valve_original_(1).PNG.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/Valve_original_(1).PNG.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/arc_de_triomphe_paris_france.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/arc_de_triomphe_paris_france.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/arc_de_triomphe_paris_france.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/arc_de_triomphe_paris_france.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/blue-balloon.jpg b/old/src/ImageProcessor.Playground/images/input/blue-balloon.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/blue-balloon.jpg rename to old/src/ImageProcessor.Playground/images/input/blue-balloon.jpg diff --git a/src/ImageProcessor.Playground/images/input/blur-test.jpg b/old/src/ImageProcessor.Playground/images/input/blur-test.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/blur-test.jpg rename to old/src/ImageProcessor.Playground/images/input/blur-test.jpg diff --git a/src/ImageProcessor.Playground/images/input/blur-test.png b/old/src/ImageProcessor.Playground/images/input/blur-test.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/blur-test.png rename to old/src/ImageProcessor.Playground/images/input/blur-test.png diff --git a/src/ImageProcessor.Playground/images/input/bob_revolutionpro_wilderness_02_2013_72dpi_2000x2000.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/bob_revolutionpro_wilderness_02_2013_72dpi_2000x2000.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/bob_revolutionpro_wilderness_02_2013_72dpi_2000x2000.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/bob_revolutionpro_wilderness_02_2013_72dpi_2000x2000.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/cat.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/cat.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/cat.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/cat.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/ce1a34f6-52bd-11e4-8164-54281a6247c9.jpg b/old/src/ImageProcessor.Playground/images/input/ce1a34f6-52bd-11e4-8164-54281a6247c9.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/ce1a34f6-52bd-11e4-8164-54281a6247c9.jpg rename to old/src/ImageProcessor.Playground/images/input/ce1a34f6-52bd-11e4-8164-54281a6247c9.jpg diff --git a/src/ImageProcessor.Playground/images/input/circle.png b/old/src/ImageProcessor.Playground/images/input/circle.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/circle.png rename to old/src/ImageProcessor.Playground/images/input/circle.png diff --git a/src/ImageProcessor.Playground/images/input/circle2.png b/old/src/ImageProcessor.Playground/images/input/circle2.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/circle2.png rename to old/src/ImageProcessor.Playground/images/input/circle2.png diff --git a/src/ImageProcessor.Playground/images/input/circle3.png b/old/src/ImageProcessor.Playground/images/input/circle3.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/circle3.png rename to old/src/ImageProcessor.Playground/images/input/circle3.png diff --git a/src/ImageProcessor.Playground/images/input/cmyk-test.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/cmyk-test.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/cmyk-test.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/cmyk-test.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/cmyk.png b/old/src/ImageProcessor.Playground/images/input/cmyk.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/cmyk.png rename to old/src/ImageProcessor.Playground/images/input/cmyk.png diff --git a/src/ImageProcessor.Playground/images/input/cow_PNG2140.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/cow_PNG2140.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/cow_PNG2140.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/cow_PNG2140.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/crop-base-300x200.jpg b/old/src/ImageProcessor.Playground/images/input/crop-base-300x200.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/crop-base-300x200.jpg rename to old/src/ImageProcessor.Playground/images/input/crop-base-300x200.jpg diff --git a/src/ImageProcessor.Playground/images/input/earth_lights_4800.tif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/earth_lights_4800.tif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/earth_lights_4800.tif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/earth_lights_4800.tif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/effect_24bit.png b/old/src/ImageProcessor.Playground/images/input/effect_24bit.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/effect_24bit.png rename to old/src/ImageProcessor.Playground/images/input/effect_24bit.png diff --git a/src/ImageProcessor.Playground/images/input/eye-162182_1280.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/eye-162182_1280.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/eye-162182_1280.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/eye-162182_1280.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/gamma-1.0-or-2.2.png b/old/src/ImageProcessor.Playground/images/input/gamma-1.0-or-2.2.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/gamma-1.0-or-2.2.png rename to old/src/ImageProcessor.Playground/images/input/gamma-1.0-or-2.2.png diff --git a/src/ImageProcessor.Playground/images/input/gamma_3x3.jpg b/old/src/ImageProcessor.Playground/images/input/gamma_3x3.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/gamma_3x3.jpg rename to old/src/ImageProcessor.Playground/images/input/gamma_3x3.jpg diff --git a/src/ImageProcessor.Playground/images/input/gamma_colors.jpg b/old/src/ImageProcessor.Playground/images/input/gamma_colors.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/gamma_colors.jpg rename to old/src/ImageProcessor.Playground/images/input/gamma_colors.jpg diff --git a/src/ImageProcessor.Playground/images/input/gamma_dalai_lama_gray.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/gamma_dalai_lama_gray.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/gamma_dalai_lama_gray.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/gamma_dalai_lama_gray.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/gamma_rainbow.jpg b/old/src/ImageProcessor.Playground/images/input/gamma_rainbow.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/gamma_rainbow.jpg rename to old/src/ImageProcessor.Playground/images/input/gamma_rainbow.jpg diff --git a/src/ImageProcessor.Playground/images/input/giphy.gif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/giphy.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/giphy.gif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/giphy.gif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/grad.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/grad.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/grad.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/grad.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/h9ghTMB.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/h9ghTMB.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/h9ghTMB.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/h9ghTMB.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/haarcascade_frontalface_alt.xml.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/haarcascade_frontalface_alt.xml.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/haarcascade_frontalface_alt.xml.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/haarcascade_frontalface_alt.xml.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/img_52061.jfif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/img_52061.jfif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/img_52061.jfif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/img_52061.jfif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/mask.png b/old/src/ImageProcessor.Playground/images/input/mask.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/mask.png rename to old/src/ImageProcessor.Playground/images/input/mask.png diff --git a/src/ImageProcessor.Playground/images/input/mask2.png b/old/src/ImageProcessor.Playground/images/input/mask2.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/mask2.png rename to old/src/ImageProcessor.Playground/images/input/mask2.png diff --git a/src/ImageProcessor.Playground/images/input/mask3.png b/old/src/ImageProcessor.Playground/images/input/mask3.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/mask3.png rename to old/src/ImageProcessor.Playground/images/input/mask3.png diff --git a/src/ImageProcessor.Playground/images/input/monster.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/monster.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/monster.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/monster.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/mountain.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/mountain.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/mountain.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/mountain.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/nLpfllv.gif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/nLpfllv.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/nLpfllv.gif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/nLpfllv.gif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/new-york.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/new-york.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/new-york.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/new-york.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/night-bridge.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/night-bridge.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/night-bridge.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/night-bridge.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/rgba.png b/old/src/ImageProcessor.Playground/images/input/rgba.png similarity index 100% rename from src/ImageProcessor.Playground/images/input/rgba.png rename to old/src/ImageProcessor.Playground/images/input/rgba.png diff --git a/src/ImageProcessor.Playground/images/input/rose_PNG658.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/rose_PNG658.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/rose_PNG658.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/rose_PNG658.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/rotate.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/rotate.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/rotate.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/rotate.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/sample1.jpg b/old/src/ImageProcessor.Playground/images/input/sample1.jpg similarity index 100% rename from src/ImageProcessor.Playground/images/input/sample1.jpg rename to old/src/ImageProcessor.Playground/images/input/sample1.jpg diff --git a/src/ImageProcessor.Playground/images/input/shutterstock_19173982_Arc_de_triomphe-square1.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/shutterstock_19173982_Arc_de_triomphe-square1.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/shutterstock_19173982_Arc_de_triomphe-square1.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/shutterstock_19173982_Arc_de_triomphe-square1.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/test-original.gif.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/test-original.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/test-original.gif.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/test-original.gif.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/test.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/test.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/test.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/test.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/test.webp b/old/src/ImageProcessor.Playground/images/input/test.webp similarity index 100% rename from src/ImageProcessor.Playground/images/input/test.webp rename to old/src/ImageProcessor.Playground/images/input/test.webp diff --git a/src/ImageProcessor.Playground/images/input/test2.png.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/test2.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/test2.png.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/test2.png.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/test5.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/test5.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/test5.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/test5.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/tower.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/tower.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/tower.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/tower.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.Playground/images/input/tree.jpg.REMOVED.git-id b/old/src/ImageProcessor.Playground/images/input/tree.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Playground/images/input/tree.jpg.REMOVED.git-id rename to old/src/ImageProcessor.Playground/images/input/tree.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/AssertionHelpers.cs b/old/src/ImageProcessor.UnitTests/AssertionHelpers.cs similarity index 100% rename from src/ImageProcessor.UnitTests/AssertionHelpers.cs rename to old/src/ImageProcessor.UnitTests/AssertionHelpers.cs diff --git a/src/ImageProcessor.UnitTests/Configuration/ImageProcessorBootstrapperTests.cs b/old/src/ImageProcessor.UnitTests/Configuration/ImageProcessorBootstrapperTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Configuration/ImageProcessorBootstrapperTests.cs rename to old/src/ImageProcessor.UnitTests/Configuration/ImageProcessorBootstrapperTests.cs diff --git a/src/ImageProcessor.UnitTests/Extensions/DoubleExtensionsUnitTests.cs b/old/src/ImageProcessor.UnitTests/Extensions/DoubleExtensionsUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Extensions/DoubleExtensionsUnitTests.cs rename to old/src/ImageProcessor.UnitTests/Extensions/DoubleExtensionsUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/Extensions/IntegerExtensionsUnitTests.cs b/old/src/ImageProcessor.UnitTests/Extensions/IntegerExtensionsUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Extensions/IntegerExtensionsUnitTests.cs rename to old/src/ImageProcessor.UnitTests/Extensions/IntegerExtensionsUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs b/old/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs rename to old/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/ImageProcessor.UnitTests.csproj b/old/src/ImageProcessor.UnitTests/ImageProcessor.UnitTests.csproj similarity index 100% rename from src/ImageProcessor.UnitTests/ImageProcessor.UnitTests.csproj rename to old/src/ImageProcessor.UnitTests/ImageProcessor.UnitTests.csproj diff --git a/src/ImageProcessor.UnitTests/Images/color-modes/cmyk.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/color-modes/cmyk.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/color-modes/cmyk.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/color-modes/cmyk.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/color-modes/srgb.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/color-modes/srgb.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/color-modes/srgb.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/color-modes/srgb.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/color-modes/srgb.png.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/color-modes/srgb.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/color-modes/srgb.png.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/color-modes/srgb.png.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/color-tests/hi-color.png b/old/src/ImageProcessor.UnitTests/Images/color-tests/hi-color.png similarity index 100% rename from src/ImageProcessor.UnitTests/Images/color-tests/hi-color.png rename to old/src/ImageProcessor.UnitTests/Images/color-tests/hi-color.png diff --git a/src/ImageProcessor.UnitTests/Images/color-tests/hi-contrast.jpg b/old/src/ImageProcessor.UnitTests/Images/color-tests/hi-contrast.jpg similarity index 100% rename from src/ImageProcessor.UnitTests/Images/color-tests/hi-contrast.jpg rename to old/src/ImageProcessor.UnitTests/Images/color-tests/hi-contrast.jpg diff --git a/src/ImageProcessor.UnitTests/Images/color-tests/hi-saturation.jpg b/old/src/ImageProcessor.UnitTests/Images/color-tests/hi-saturation.jpg similarity index 100% rename from src/ImageProcessor.UnitTests/Images/color-tests/hi-saturation.jpg rename to old/src/ImageProcessor.UnitTests/Images/color-tests/hi-saturation.jpg diff --git a/src/ImageProcessor.UnitTests/Images/exif/autorotate.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/exif/autorotate.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/exif/autorotate.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/exif/autorotate.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/exif/exif-Tulips.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/exif/exif-Tulips.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/exif/exif-Tulips.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/exif/exif-Tulips.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/exif/exif-rocks.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/exif/exif-rocks.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/exif/exif-rocks.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/exif/exif-rocks.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-Penguins-8bit.png.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-Penguins-8bit.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-Penguins-8bit.png.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-Penguins-8bit.png.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-Penguins.bmp.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-Penguins.bmp.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-Penguins.bmp.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-Penguins.bmp.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-Penguins.gif.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-Penguins.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-Penguins.gif.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-Penguins.gif.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-Penguins.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-Penguins.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-Penguins.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-Penguins.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-Penguins.png.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-Penguins.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-Penguins.png.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-Penguins.png.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-Penguins.tif.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-Penguins.tif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-Penguins.tif.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-Penguins.tif.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/format-animated.gif.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/format-animated.gif.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/format-animated.gif.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/format-animated.gif.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/icc-profiles/cmyk-profile-euroscale.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/icc-profiles/cmyk-profile-euroscale.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/icc-profiles/cmyk-profile-euroscale.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/icc-profiles/cmyk-profile-euroscale.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/icc-profiles/profile-adobe-rgb.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/icc-profiles/profile-adobe-rgb.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/icc-profiles/profile-adobe-rgb.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/icc-profiles/profile-adobe-rgb.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/icc-profiles/profile-srgb.jpg.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/icc-profiles/profile-srgb.jpg.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/icc-profiles/profile-srgb.jpg.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/icc-profiles/profile-srgb.jpg.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/imageprocessor/mask/mask.png b/old/src/ImageProcessor.UnitTests/Images/imageprocessor/mask/mask.png similarity index 100% rename from src/ImageProcessor.UnitTests/Images/imageprocessor/mask/mask.png rename to old/src/ImageProcessor.UnitTests/Images/imageprocessor/mask/mask.png diff --git a/src/ImageProcessor.UnitTests/Images/imageprocessor/overlay/monster.png.REMOVED.git-id b/old/src/ImageProcessor.UnitTests/Images/imageprocessor/overlay/monster.png.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.UnitTests/Images/imageprocessor/overlay/monster.png.REMOVED.git-id rename to old/src/ImageProcessor.UnitTests/Images/imageprocessor/overlay/monster.png.REMOVED.git-id diff --git a/src/ImageProcessor.UnitTests/Images/stretched.jpg b/old/src/ImageProcessor.UnitTests/Images/stretched.jpg similarity index 100% rename from src/ImageProcessor.UnitTests/Images/stretched.jpg rename to old/src/ImageProcessor.UnitTests/Images/stretched.jpg diff --git a/src/ImageProcessor.UnitTests/Images/text.png b/old/src/ImageProcessor.UnitTests/Images/text.png similarity index 100% rename from src/ImageProcessor.UnitTests/Images/text.png rename to old/src/ImageProcessor.UnitTests/Images/text.png diff --git a/src/ImageProcessor.UnitTests/Imaging/ColorUnitTests.cs b/old/src/ImageProcessor.UnitTests/Imaging/ColorUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Imaging/ColorUnitTests.cs rename to old/src/ImageProcessor.UnitTests/Imaging/ColorUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/Imaging/CropLayerUnitTests.cs b/old/src/ImageProcessor.UnitTests/Imaging/CropLayerUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Imaging/CropLayerUnitTests.cs rename to old/src/ImageProcessor.UnitTests/Imaging/CropLayerUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/Imaging/FastBitmapUnitTests.cs b/old/src/ImageProcessor.UnitTests/Imaging/FastBitmapUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Imaging/FastBitmapUnitTests.cs rename to old/src/ImageProcessor.UnitTests/Imaging/FastBitmapUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/Imaging/Helpers/ImageMathsUnitTests.cs b/old/src/ImageProcessor.UnitTests/Imaging/Helpers/ImageMathsUnitTests.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Imaging/Helpers/ImageMathsUnitTests.cs rename to old/src/ImageProcessor.UnitTests/Imaging/Helpers/ImageMathsUnitTests.cs diff --git a/src/ImageProcessor.UnitTests/Properties/AssemblyInfo.cs b/old/src/ImageProcessor.UnitTests/Properties/AssemblyInfo.cs similarity index 100% rename from src/ImageProcessor.UnitTests/Properties/AssemblyInfo.cs rename to old/src/ImageProcessor.UnitTests/Properties/AssemblyInfo.cs diff --git a/src/ImageProcessor.UnitTests/packages.config b/old/src/ImageProcessor.UnitTests/packages.config similarity index 92% rename from src/ImageProcessor.UnitTests/packages.config rename to old/src/ImageProcessor.UnitTests/packages.config index 29c465218..8c46e4859 100644 --- a/src/ImageProcessor.UnitTests/packages.config +++ b/old/src/ImageProcessor.UnitTests/packages.config @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff --git a/src/ImageProcessor.Web.PostProcessor/ApplicationEvents.cs b/old/src/ImageProcessor.Web.PostProcessor/ApplicationEvents.cs similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/ApplicationEvents.cs rename to old/src/ImageProcessor.Web.PostProcessor/ApplicationEvents.cs diff --git a/src/ImageProcessor.Web.PostProcessor/ImageProcessor.Web.PostProcessor.csproj b/old/src/ImageProcessor.Web.PostProcessor/ImageProcessor.Web.PostProcessor.csproj similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/ImageProcessor.Web.PostProcessor.csproj rename to old/src/ImageProcessor.Web.PostProcessor/ImageProcessor.Web.PostProcessor.csproj diff --git a/src/ImageProcessor.Web.PostProcessor/PostProcessingResultEventArgs.cs b/old/src/ImageProcessor.Web.PostProcessor/PostProcessingResultEventArgs.cs similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/PostProcessingResultEventArgs.cs rename to old/src/ImageProcessor.Web.PostProcessor/PostProcessingResultEventArgs.cs diff --git a/src/ImageProcessor.Web.PostProcessor/PostProcessor.cs b/old/src/ImageProcessor.Web.PostProcessor/PostProcessor.cs similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/PostProcessor.cs rename to old/src/ImageProcessor.Web.PostProcessor/PostProcessor.cs diff --git a/src/ImageProcessor.Web.PostProcessor/PostProcessorBootstrapper.cs b/old/src/ImageProcessor.Web.PostProcessor/PostProcessorBootstrapper.cs similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/PostProcessorBootstrapper.cs rename to old/src/ImageProcessor.Web.PostProcessor/PostProcessorBootstrapper.cs diff --git a/src/ImageProcessor.Web.PostProcessor/Properties/AssemblyInfo.cs b/old/src/ImageProcessor.Web.PostProcessor/Properties/AssemblyInfo.cs similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Properties/AssemblyInfo.cs rename to old/src/ImageProcessor.Web.PostProcessor/Properties/AssemblyInfo.cs diff --git a/src/ImageProcessor.Web.PostProcessor/README.md b/old/src/ImageProcessor.Web.PostProcessor/README.md similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/README.md rename to old/src/ImageProcessor.Web.PostProcessor/README.md diff --git a/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x64/gifsicle.exe.REMOVED.git-id b/old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x64/gifsicle.exe.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x64/gifsicle.exe.REMOVED.git-id rename to old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x64/gifsicle.exe.REMOVED.git-id diff --git a/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/gifsicle.exe.REMOVED.git-id b/old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/gifsicle.exe.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/gifsicle.exe.REMOVED.git-id rename to old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/gifsicle.exe.REMOVED.git-id diff --git a/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/jpegtran.exe.REMOVED.git-id b/old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/jpegtran.exe.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/jpegtran.exe.REMOVED.git-id rename to old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/jpegtran.exe.REMOVED.git-id diff --git a/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/optipng.exe.REMOVED.git-id b/old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/optipng.exe.REMOVED.git-id similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/optipng.exe.REMOVED.git-id rename to old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/optipng.exe.REMOVED.git-id diff --git a/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/png.cmd b/old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/png.cmd similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/png.cmd rename to old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/png.cmd diff --git a/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/pngout.exe b/old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/pngout.exe similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/pngout.exe rename to old/src/ImageProcessor.Web.PostProcessor/Resources/Unmanaged/x86/pngout.exe diff --git a/src/ImageProcessor.Web.PostProcessor/Settings.StyleCop b/old/src/ImageProcessor.Web.PostProcessor/Settings.StyleCop similarity index 100% rename from src/ImageProcessor.Web.PostProcessor/Settings.StyleCop rename to old/src/ImageProcessor.Web.PostProcessor/Settings.StyleCop diff --git a/src/ImageProcessor.Web.UnitTests/Extensions/StringExtensionsUnitTests.cs b/old/src/ImageProcessor.Web.UnitTests/Extensions/StringExtensionsUnitTests.cs similarity index 100% rename from src/ImageProcessor.Web.UnitTests/Extensions/StringExtensionsUnitTests.cs rename to old/src/ImageProcessor.Web.UnitTests/Extensions/StringExtensionsUnitTests.cs diff --git a/src/ImageProcessor.Web.UnitTests/ImageProcessor.Web.UnitTests.csproj b/old/src/ImageProcessor.Web.UnitTests/ImageProcessor.Web.UnitTests.csproj similarity index 100% rename from src/ImageProcessor.Web.UnitTests/ImageProcessor.Web.UnitTests.csproj rename to old/src/ImageProcessor.Web.UnitTests/ImageProcessor.Web.UnitTests.csproj diff --git a/src/ImageProcessor.Web.UnitTests/Properties/AssemblyInfo.cs b/old/src/ImageProcessor.Web.UnitTests/Properties/AssemblyInfo.cs similarity index 100% rename from src/ImageProcessor.Web.UnitTests/Properties/AssemblyInfo.cs rename to old/src/ImageProcessor.Web.UnitTests/Properties/AssemblyInfo.cs diff --git a/src/ImageProcessor.Web.UnitTests/QueryParamParserUnitTests.cs b/old/src/ImageProcessor.Web.UnitTests/QueryParamParserUnitTests.cs similarity index 100% rename from src/ImageProcessor.Web.UnitTests/QueryParamParserUnitTests.cs rename to old/src/ImageProcessor.Web.UnitTests/QueryParamParserUnitTests.cs diff --git a/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs b/old/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs similarity index 100% rename from src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs rename to old/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs diff --git a/src/ImageProcessor.Web.UnitTests/packages.config b/old/src/ImageProcessor.Web.UnitTests/packages.config similarity index 100% rename from src/ImageProcessor.Web.UnitTests/packages.config rename to old/src/ImageProcessor.Web.UnitTests/packages.config diff --git a/src/ImageProcessor.Web/Caching/CacheIndexer.cs b/old/src/ImageProcessor.Web/Caching/CacheIndexer.cs similarity index 100% rename from src/ImageProcessor.Web/Caching/CacheIndexer.cs rename to old/src/ImageProcessor.Web/Caching/CacheIndexer.cs diff --git a/src/ImageProcessor.Web/Caching/CachedImage.cs b/old/src/ImageProcessor.Web/Caching/CachedImage.cs similarity index 100% rename from src/ImageProcessor.Web/Caching/CachedImage.cs rename to old/src/ImageProcessor.Web/Caching/CachedImage.cs diff --git a/src/ImageProcessor.Web/Caching/DiskCache.cs b/old/src/ImageProcessor.Web/Caching/DiskCache.cs similarity index 100% rename from src/ImageProcessor.Web/Caching/DiskCache.cs rename to old/src/ImageProcessor.Web/Caching/DiskCache.cs diff --git a/src/ImageProcessor.Web/Caching/IImageCache.cs b/old/src/ImageProcessor.Web/Caching/IImageCache.cs similarity index 100% rename from src/ImageProcessor.Web/Caching/IImageCache.cs rename to old/src/ImageProcessor.Web/Caching/IImageCache.cs diff --git a/src/ImageProcessor.Web/Caching/ImageCacheBase.cs b/old/src/ImageProcessor.Web/Caching/ImageCacheBase.cs similarity index 100% rename from src/ImageProcessor.Web/Caching/ImageCacheBase.cs rename to old/src/ImageProcessor.Web/Caching/ImageCacheBase.cs diff --git a/src/ImageProcessor.Web/Caching/MemCache.cs b/old/src/ImageProcessor.Web/Caching/MemCache.cs similarity index 100% rename from src/ImageProcessor.Web/Caching/MemCache.cs rename to old/src/ImageProcessor.Web/Caching/MemCache.cs diff --git a/src/ImageProcessor.Web/Configuration/ImageCacheSection.cs b/old/src/ImageProcessor.Web/Configuration/ImageCacheSection.cs similarity index 100% rename from src/ImageProcessor.Web/Configuration/ImageCacheSection.cs rename to old/src/ImageProcessor.Web/Configuration/ImageCacheSection.cs diff --git a/src/ImageProcessor.Web/Configuration/ImageProcessingSection.cs b/old/src/ImageProcessor.Web/Configuration/ImageProcessingSection.cs similarity index 100% rename from src/ImageProcessor.Web/Configuration/ImageProcessingSection.cs rename to old/src/ImageProcessor.Web/Configuration/ImageProcessingSection.cs diff --git a/src/ImageProcessor.Web/Configuration/ImageProcessorConfiguration.cs b/old/src/ImageProcessor.Web/Configuration/ImageProcessorConfiguration.cs similarity index 100% rename from src/ImageProcessor.Web/Configuration/ImageProcessorConfiguration.cs rename to old/src/ImageProcessor.Web/Configuration/ImageProcessorConfiguration.cs diff --git a/src/ImageProcessor.Web/Configuration/ImageSecuritySection.cs b/old/src/ImageProcessor.Web/Configuration/ImageSecuritySection.cs similarity index 100% rename from src/ImageProcessor.Web/Configuration/ImageSecuritySection.cs rename to old/src/ImageProcessor.Web/Configuration/ImageSecuritySection.cs diff --git a/src/ImageProcessor.Web/Configuration/Resources/cache.config.transform b/old/src/ImageProcessor.Web/Configuration/Resources/cache.config.transform similarity index 100% rename from src/ImageProcessor.Web/Configuration/Resources/cache.config.transform rename to old/src/ImageProcessor.Web/Configuration/Resources/cache.config.transform diff --git a/src/ImageProcessor.Web/Configuration/Resources/processing.config.transform b/old/src/ImageProcessor.Web/Configuration/Resources/processing.config.transform similarity index 100% rename from src/ImageProcessor.Web/Configuration/Resources/processing.config.transform rename to old/src/ImageProcessor.Web/Configuration/Resources/processing.config.transform diff --git a/src/ImageProcessor.Web/Configuration/Resources/security.config.transform b/old/src/ImageProcessor.Web/Configuration/Resources/security.config.transform similarity index 100% rename from src/ImageProcessor.Web/Configuration/Resources/security.config.transform rename to old/src/ImageProcessor.Web/Configuration/Resources/security.config.transform diff --git a/src/ImageProcessor.Web/Configuration/Shared/SettingElement.cs b/old/src/ImageProcessor.Web/Configuration/Shared/SettingElement.cs similarity index 100% rename from src/ImageProcessor.Web/Configuration/Shared/SettingElement.cs rename to old/src/ImageProcessor.Web/Configuration/Shared/SettingElement.cs diff --git a/src/ImageProcessor.Web/Configuration/Shared/SettingElementCollection.cs b/old/src/ImageProcessor.Web/Configuration/Shared/SettingElementCollection.cs similarity index 100% rename from src/ImageProcessor.Web/Configuration/Shared/SettingElementCollection.cs rename to old/src/ImageProcessor.Web/Configuration/Shared/SettingElementCollection.cs diff --git a/src/ImageProcessor.Web/Extensions/DirectoryInfoExtensions.cs b/old/src/ImageProcessor.Web/Extensions/DirectoryInfoExtensions.cs similarity index 100% rename from src/ImageProcessor.Web/Extensions/DirectoryInfoExtensions.cs rename to old/src/ImageProcessor.Web/Extensions/DirectoryInfoExtensions.cs diff --git a/src/ImageProcessor.Web/Extensions/StringExtensions.cs b/old/src/ImageProcessor.Web/Extensions/StringExtensions.cs similarity index 100% rename from src/ImageProcessor.Web/Extensions/StringExtensions.cs rename to old/src/ImageProcessor.Web/Extensions/StringExtensions.cs diff --git a/src/ImageProcessor.Web/Extensions/TypeInitializationExtensions.cs b/old/src/ImageProcessor.Web/Extensions/TypeInitializationExtensions.cs similarity index 100% rename from src/ImageProcessor.Web/Extensions/TypeInitializationExtensions.cs rename to old/src/ImageProcessor.Web/Extensions/TypeInitializationExtensions.cs diff --git a/src/ImageProcessor.Web/Helpers/AsyncDuplicateLock.cs b/old/src/ImageProcessor.Web/Helpers/AsyncDuplicateLock.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/AsyncDuplicateLock.cs rename to old/src/ImageProcessor.Web/Helpers/AsyncDuplicateLock.cs diff --git a/src/ImageProcessor.Web/Helpers/CommonParameterParserUtility.cs b/old/src/ImageProcessor.Web/Helpers/CommonParameterParserUtility.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/CommonParameterParserUtility.cs rename to old/src/ImageProcessor.Web/Helpers/CommonParameterParserUtility.cs diff --git a/src/ImageProcessor.Web/Helpers/ImageHelpers.cs b/old/src/ImageProcessor.Web/Helpers/ImageHelpers.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/ImageHelpers.cs rename to old/src/ImageProcessor.Web/Helpers/ImageHelpers.cs diff --git a/src/ImageProcessor.Web/Helpers/NativeMethods.cs b/old/src/ImageProcessor.Web/Helpers/NativeMethods.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/NativeMethods.cs rename to old/src/ImageProcessor.Web/Helpers/NativeMethods.cs diff --git a/src/ImageProcessor.Web/Helpers/PostProcessingEventArgs.cs b/old/src/ImageProcessor.Web/Helpers/PostProcessingEventArgs.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/PostProcessingEventArgs.cs rename to old/src/ImageProcessor.Web/Helpers/PostProcessingEventArgs.cs diff --git a/src/ImageProcessor.Web/Helpers/ProcessQueryStringEventArgs.cs b/old/src/ImageProcessor.Web/Helpers/ProcessQueryStringEventArgs.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/ProcessQueryStringEventArgs.cs rename to old/src/ImageProcessor.Web/Helpers/ProcessQueryStringEventArgs.cs diff --git a/src/ImageProcessor.Web/Helpers/QuerystringParser/ExtendedColorTypeConverter.cs b/old/src/ImageProcessor.Web/Helpers/QuerystringParser/ExtendedColorTypeConverter.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/QuerystringParser/ExtendedColorTypeConverter.cs rename to old/src/ImageProcessor.Web/Helpers/QuerystringParser/ExtendedColorTypeConverter.cs diff --git a/src/ImageProcessor.Web/Helpers/QuerystringParser/FontFamilyConverter.cs b/old/src/ImageProcessor.Web/Helpers/QuerystringParser/FontFamilyConverter.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/QuerystringParser/FontFamilyConverter.cs rename to old/src/ImageProcessor.Web/Helpers/QuerystringParser/FontFamilyConverter.cs diff --git a/src/ImageProcessor.Web/Helpers/QuerystringParser/GenericArrayTypeConverter.cs b/old/src/ImageProcessor.Web/Helpers/QuerystringParser/GenericArrayTypeConverter.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/QuerystringParser/GenericArrayTypeConverter.cs rename to old/src/ImageProcessor.Web/Helpers/QuerystringParser/GenericArrayTypeConverter.cs diff --git a/src/ImageProcessor.Web/Helpers/QuerystringParser/GenericListTypeConverter.cs b/old/src/ImageProcessor.Web/Helpers/QuerystringParser/GenericListTypeConverter.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/QuerystringParser/GenericListTypeConverter.cs rename to old/src/ImageProcessor.Web/Helpers/QuerystringParser/GenericListTypeConverter.cs diff --git a/src/ImageProcessor.Web/Helpers/QuerystringParser/QueryParamParser.cs b/old/src/ImageProcessor.Web/Helpers/QuerystringParser/QueryParamParser.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/QuerystringParser/QueryParamParser.cs rename to old/src/ImageProcessor.Web/Helpers/QuerystringParser/QueryParamParser.cs diff --git a/src/ImageProcessor.Web/Helpers/RemoteFile.cs b/old/src/ImageProcessor.Web/Helpers/RemoteFile.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/RemoteFile.cs rename to old/src/ImageProcessor.Web/Helpers/RemoteFile.cs diff --git a/src/ImageProcessor.Web/Helpers/ResourceHelpers.cs b/old/src/ImageProcessor.Web/Helpers/ResourceHelpers.cs similarity index 100% rename from src/ImageProcessor.Web/Helpers/ResourceHelpers.cs rename to old/src/ImageProcessor.Web/Helpers/ResourceHelpers.cs diff --git a/src/ImageProcessor.Web/HttpModules/ImageProcessingModule.cs b/old/src/ImageProcessor.Web/HttpModules/ImageProcessingModule.cs similarity index 100% rename from src/ImageProcessor.Web/HttpModules/ImageProcessingModule.cs rename to old/src/ImageProcessor.Web/HttpModules/ImageProcessingModule.cs diff --git a/src/ImageProcessor.Web/ImageFactoryExtensions.cs b/old/src/ImageProcessor.Web/ImageFactoryExtensions.cs similarity index 100% rename from src/ImageProcessor.Web/ImageFactoryExtensions.cs rename to old/src/ImageProcessor.Web/ImageFactoryExtensions.cs diff --git a/src/ImageProcessor.Web/ImageProcessor.Web.csproj b/old/src/ImageProcessor.Web/ImageProcessor.Web.csproj similarity index 100% rename from src/ImageProcessor.Web/ImageProcessor.Web.csproj rename to old/src/ImageProcessor.Web/ImageProcessor.Web.csproj diff --git a/src/ImageProcessor.Web/ImageProcessor.Web.csproj.DotSettings b/old/src/ImageProcessor.Web/ImageProcessor.Web.csproj.DotSettings similarity index 100% rename from src/ImageProcessor.Web/ImageProcessor.Web.csproj.DotSettings rename to old/src/ImageProcessor.Web/ImageProcessor.Web.csproj.DotSettings diff --git a/src/ImageProcessor.Web/Processors/Alpha.cs b/old/src/ImageProcessor.Web/Processors/Alpha.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Alpha.cs rename to old/src/ImageProcessor.Web/Processors/Alpha.cs diff --git a/src/ImageProcessor.Web/Processors/AutoRotate.cs b/old/src/ImageProcessor.Web/Processors/AutoRotate.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/AutoRotate.cs rename to old/src/ImageProcessor.Web/Processors/AutoRotate.cs diff --git a/src/ImageProcessor.Web/Processors/BackgroundColor.cs b/old/src/ImageProcessor.Web/Processors/BackgroundColor.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/BackgroundColor.cs rename to old/src/ImageProcessor.Web/Processors/BackgroundColor.cs diff --git a/src/ImageProcessor.Web/Processors/Brightness.cs b/old/src/ImageProcessor.Web/Processors/Brightness.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Brightness.cs rename to old/src/ImageProcessor.Web/Processors/Brightness.cs diff --git a/src/ImageProcessor.Web/Processors/Contrast.cs b/old/src/ImageProcessor.Web/Processors/Contrast.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Contrast.cs rename to old/src/ImageProcessor.Web/Processors/Contrast.cs diff --git a/src/ImageProcessor.Web/Processors/Crop.cs b/old/src/ImageProcessor.Web/Processors/Crop.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Crop.cs rename to old/src/ImageProcessor.Web/Processors/Crop.cs diff --git a/src/ImageProcessor.Web/Processors/DetectEdges.cs b/old/src/ImageProcessor.Web/Processors/DetectEdges.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/DetectEdges.cs rename to old/src/ImageProcessor.Web/Processors/DetectEdges.cs diff --git a/src/ImageProcessor.Web/Processors/EntropyCrop.cs b/old/src/ImageProcessor.Web/Processors/EntropyCrop.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/EntropyCrop.cs rename to old/src/ImageProcessor.Web/Processors/EntropyCrop.cs diff --git a/src/ImageProcessor.Web/Processors/Filter.cs b/old/src/ImageProcessor.Web/Processors/Filter.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Filter.cs rename to old/src/ImageProcessor.Web/Processors/Filter.cs diff --git a/src/ImageProcessor.Web/Processors/Flip.cs b/old/src/ImageProcessor.Web/Processors/Flip.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Flip.cs rename to old/src/ImageProcessor.Web/Processors/Flip.cs diff --git a/src/ImageProcessor.Web/Processors/Format.cs b/old/src/ImageProcessor.Web/Processors/Format.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Format.cs rename to old/src/ImageProcessor.Web/Processors/Format.cs diff --git a/src/ImageProcessor.Web/Processors/GaussianBlur.cs b/old/src/ImageProcessor.Web/Processors/GaussianBlur.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/GaussianBlur.cs rename to old/src/ImageProcessor.Web/Processors/GaussianBlur.cs diff --git a/src/ImageProcessor.Web/Processors/GaussianSharpen.cs b/old/src/ImageProcessor.Web/Processors/GaussianSharpen.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/GaussianSharpen.cs rename to old/src/ImageProcessor.Web/Processors/GaussianSharpen.cs diff --git a/src/ImageProcessor.Web/Processors/Halftone.cs b/old/src/ImageProcessor.Web/Processors/Halftone.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Halftone.cs rename to old/src/ImageProcessor.Web/Processors/Halftone.cs diff --git a/src/ImageProcessor.Web/Processors/Hue.cs b/old/src/ImageProcessor.Web/Processors/Hue.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Hue.cs rename to old/src/ImageProcessor.Web/Processors/Hue.cs diff --git a/src/ImageProcessor.Web/Processors/IWebGraphicsProcessor.cs b/old/src/ImageProcessor.Web/Processors/IWebGraphicsProcessor.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/IWebGraphicsProcessor.cs rename to old/src/ImageProcessor.Web/Processors/IWebGraphicsProcessor.cs diff --git a/src/ImageProcessor.Web/Processors/Mask.cs b/old/src/ImageProcessor.Web/Processors/Mask.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Mask.cs rename to old/src/ImageProcessor.Web/Processors/Mask.cs diff --git a/src/ImageProcessor.Web/Processors/Meta.cs b/old/src/ImageProcessor.Web/Processors/Meta.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Meta.cs rename to old/src/ImageProcessor.Web/Processors/Meta.cs diff --git a/src/ImageProcessor.Web/Processors/Overlay.cs b/old/src/ImageProcessor.Web/Processors/Overlay.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Overlay.cs rename to old/src/ImageProcessor.Web/Processors/Overlay.cs diff --git a/src/ImageProcessor.Web/Processors/Pixelate.cs b/old/src/ImageProcessor.Web/Processors/Pixelate.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Pixelate.cs rename to old/src/ImageProcessor.Web/Processors/Pixelate.cs diff --git a/src/ImageProcessor.Web/Processors/Quality.cs b/old/src/ImageProcessor.Web/Processors/Quality.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Quality.cs rename to old/src/ImageProcessor.Web/Processors/Quality.cs diff --git a/src/ImageProcessor.Web/Processors/ReplaceColor.cs b/old/src/ImageProcessor.Web/Processors/ReplaceColor.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/ReplaceColor.cs rename to old/src/ImageProcessor.Web/Processors/ReplaceColor.cs diff --git a/src/ImageProcessor.Web/Processors/Resize.cs b/old/src/ImageProcessor.Web/Processors/Resize.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Resize.cs rename to old/src/ImageProcessor.Web/Processors/Resize.cs diff --git a/src/ImageProcessor.Web/Processors/Rotate.cs b/old/src/ImageProcessor.Web/Processors/Rotate.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Rotate.cs rename to old/src/ImageProcessor.Web/Processors/Rotate.cs diff --git a/src/ImageProcessor.Web/Processors/RotateBounded.cs b/old/src/ImageProcessor.Web/Processors/RotateBounded.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/RotateBounded.cs rename to old/src/ImageProcessor.Web/Processors/RotateBounded.cs diff --git a/src/ImageProcessor.Web/Processors/RoundedCorners.cs b/old/src/ImageProcessor.Web/Processors/RoundedCorners.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/RoundedCorners.cs rename to old/src/ImageProcessor.Web/Processors/RoundedCorners.cs diff --git a/src/ImageProcessor.Web/Processors/Saturation.cs b/old/src/ImageProcessor.Web/Processors/Saturation.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Saturation.cs rename to old/src/ImageProcessor.Web/Processors/Saturation.cs diff --git a/src/ImageProcessor.Web/Processors/Tint.cs b/old/src/ImageProcessor.Web/Processors/Tint.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Tint.cs rename to old/src/ImageProcessor.Web/Processors/Tint.cs diff --git a/src/ImageProcessor.Web/Processors/Vignette.cs b/old/src/ImageProcessor.Web/Processors/Vignette.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Vignette.cs rename to old/src/ImageProcessor.Web/Processors/Vignette.cs diff --git a/src/ImageProcessor.Web/Processors/Watermark.cs b/old/src/ImageProcessor.Web/Processors/Watermark.cs similarity index 100% rename from src/ImageProcessor.Web/Processors/Watermark.cs rename to old/src/ImageProcessor.Web/Processors/Watermark.cs diff --git a/src/ImageProcessor.Web/Properties/AssemblyInfo.cs b/old/src/ImageProcessor.Web/Properties/AssemblyInfo.cs similarity index 100% rename from src/ImageProcessor.Web/Properties/AssemblyInfo.cs rename to old/src/ImageProcessor.Web/Properties/AssemblyInfo.cs diff --git a/src/ImageProcessor.Web/Services/IImageService.cs b/old/src/ImageProcessor.Web/Services/IImageService.cs similarity index 100% rename from src/ImageProcessor.Web/Services/IImageService.cs rename to old/src/ImageProcessor.Web/Services/IImageService.cs diff --git a/src/ImageProcessor.Web/Services/LocalFileImageService.cs b/old/src/ImageProcessor.Web/Services/LocalFileImageService.cs similarity index 100% rename from src/ImageProcessor.Web/Services/LocalFileImageService.cs rename to old/src/ImageProcessor.Web/Services/LocalFileImageService.cs diff --git a/src/ImageProcessor.Web/Services/RemoteImageService.cs b/old/src/ImageProcessor.Web/Services/RemoteImageService.cs similarity index 100% rename from src/ImageProcessor.Web/Services/RemoteImageService.cs rename to old/src/ImageProcessor.Web/Services/RemoteImageService.cs diff --git a/src/ImageProcessor.Web/Settings.StyleCop b/old/src/ImageProcessor.Web/Settings.StyleCop similarity index 100% rename from src/ImageProcessor.Web/Settings.StyleCop rename to old/src/ImageProcessor.Web/Settings.StyleCop diff --git a/src/ImageProcessor.sln b/old/src/ImageProcessor.sln similarity index 100% rename from src/ImageProcessor.sln rename to old/src/ImageProcessor.sln diff --git a/src/ImageProcessor.sln.DotSettings b/old/src/ImageProcessor.sln.DotSettings similarity index 100% rename from src/ImageProcessor.sln.DotSettings rename to old/src/ImageProcessor.sln.DotSettings diff --git a/src/ImageProcessor/Common/Exceptions/ImageFormatException.cs b/old/src/ImageProcessor/Common/Exceptions/ImageFormatException.cs similarity index 100% rename from src/ImageProcessor/Common/Exceptions/ImageFormatException.cs rename to old/src/ImageProcessor/Common/Exceptions/ImageFormatException.cs diff --git a/src/ImageProcessor/Common/Exceptions/ImageProcessingException.cs b/old/src/ImageProcessor/Common/Exceptions/ImageProcessingException.cs similarity index 100% rename from src/ImageProcessor/Common/Exceptions/ImageProcessingException.cs rename to old/src/ImageProcessor/Common/Exceptions/ImageProcessingException.cs diff --git a/src/ImageProcessor/Common/Exceptions/QuantizationException.cs b/old/src/ImageProcessor/Common/Exceptions/QuantizationException.cs similarity index 100% rename from src/ImageProcessor/Common/Exceptions/QuantizationException.cs rename to old/src/ImageProcessor/Common/Exceptions/QuantizationException.cs diff --git a/src/ImageProcessor/Common/Extensions/AssemblyExtensions.cs b/old/src/ImageProcessor/Common/Extensions/AssemblyExtensions.cs similarity index 100% rename from src/ImageProcessor/Common/Extensions/AssemblyExtensions.cs rename to old/src/ImageProcessor/Common/Extensions/AssemblyExtensions.cs diff --git a/src/ImageProcessor/Common/Extensions/DoubleExtensions.cs b/old/src/ImageProcessor/Common/Extensions/DoubleExtensions.cs similarity index 100% rename from src/ImageProcessor/Common/Extensions/DoubleExtensions.cs rename to old/src/ImageProcessor/Common/Extensions/DoubleExtensions.cs diff --git a/src/ImageProcessor/Common/Extensions/EnumerableExtensions.cs b/old/src/ImageProcessor/Common/Extensions/EnumerableExtensions.cs similarity index 100% rename from src/ImageProcessor/Common/Extensions/EnumerableExtensions.cs rename to old/src/ImageProcessor/Common/Extensions/EnumerableExtensions.cs diff --git a/src/ImageProcessor/Common/Extensions/IntegerExtensions.cs b/old/src/ImageProcessor/Common/Extensions/IntegerExtensions.cs similarity index 100% rename from src/ImageProcessor/Common/Extensions/IntegerExtensions.cs rename to old/src/ImageProcessor/Common/Extensions/IntegerExtensions.cs diff --git a/src/ImageProcessor/Common/Extensions/RectangleExtensions.cs b/old/src/ImageProcessor/Common/Extensions/RectangleExtensions.cs similarity index 100% rename from src/ImageProcessor/Common/Extensions/RectangleExtensions.cs rename to old/src/ImageProcessor/Common/Extensions/RectangleExtensions.cs diff --git a/src/ImageProcessor/Common/Helpers/IOHelper.cs b/old/src/ImageProcessor/Common/Helpers/IOHelper.cs similarity index 100% rename from src/ImageProcessor/Common/Helpers/IOHelper.cs rename to old/src/ImageProcessor/Common/Helpers/IOHelper.cs diff --git a/src/ImageProcessor/Common/Helpers/TypeFinder.cs b/old/src/ImageProcessor/Common/Helpers/TypeFinder.cs similarity index 100% rename from src/ImageProcessor/Common/Helpers/TypeFinder.cs rename to old/src/ImageProcessor/Common/Helpers/TypeFinder.cs diff --git a/src/ImageProcessor/Common/Helpers/UpgradeableReadLock.cs b/old/src/ImageProcessor/Common/Helpers/UpgradeableReadLock.cs similarity index 100% rename from src/ImageProcessor/Common/Helpers/UpgradeableReadLock.cs rename to old/src/ImageProcessor/Common/Helpers/UpgradeableReadLock.cs diff --git a/src/ImageProcessor/Common/Helpers/WriteLock.cs b/old/src/ImageProcessor/Common/Helpers/WriteLock.cs similarity index 100% rename from src/ImageProcessor/Common/Helpers/WriteLock.cs rename to old/src/ImageProcessor/Common/Helpers/WriteLock.cs diff --git a/src/ImageProcessor/Configuration/ImageProcessorBootstrapper.cs b/old/src/ImageProcessor/Configuration/ImageProcessorBootstrapper.cs similarity index 100% rename from src/ImageProcessor/Configuration/ImageProcessorBootstrapper.cs rename to old/src/ImageProcessor/Configuration/ImageProcessorBootstrapper.cs diff --git a/src/ImageProcessor/Configuration/NativeBinaryFactory.cs b/old/src/ImageProcessor/Configuration/NativeBinaryFactory.cs similarity index 100% rename from src/ImageProcessor/Configuration/NativeBinaryFactory.cs rename to old/src/ImageProcessor/Configuration/NativeBinaryFactory.cs diff --git a/src/ImageProcessor/Configuration/NativeMethods.cs b/old/src/ImageProcessor/Configuration/NativeMethods.cs similarity index 100% rename from src/ImageProcessor/Configuration/NativeMethods.cs rename to old/src/ImageProcessor/Configuration/NativeMethods.cs diff --git a/src/ImageProcessor/ImageFactory.cs b/old/src/ImageProcessor/ImageFactory.cs similarity index 100% rename from src/ImageProcessor/ImageFactory.cs rename to old/src/ImageProcessor/ImageFactory.cs diff --git a/old/src/ImageProcessor/ImageProcessor.csproj b/old/src/ImageProcessor/ImageProcessor.csproj new file mode 100644 index 000000000..998a82514 --- /dev/null +++ b/old/src/ImageProcessor/ImageProcessor.csproj @@ -0,0 +1,264 @@ + + + + + Debug + AnyCPU + {3B5DD734-FB7A-487D-8CE6-55E7AF9AEA7E} + Library + Properties + ImageProcessor + ImageProcessor + v4.5 + + NET45 + 512 + ..\ + true + + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE;NET45 + prompt + 4 + bin\Debug\ImageProcessor.XML + false + true + + + + + v4.0 + Client + AnyCPU + true + full + false + bin\Debug\$(Framework)\ + DEBUG;TRACE;NET40 + prompt + 4 + bin\$(Configuration)\$(Framework)\ImageProcessor.XML + false + true + + + + pdbonly + true + bin\Release\ + TRACE;NET45 + prompt + 4 + bin\Release\ImageProcessor.XML + false + true + + + + + v4.0 + Client + pdbonly + true + bin\Release\$(Framework)\ + TRACE;NET40 + prompt + 4 + bin\Release\$(Framework)\ImageProcessor.XML + false + true + + + + true + bin\All\ + DEBUG;TRACE;NET45 + bin\Debug\ImageProcessor.XML + full + AnyCPU + prompt + false + true + 4 + false + false + true + + + + + v4.0 + Client + true + bin\All\$(Framework)\ + DEBUG;TRACE;NET40 + bin\Debug\$(Framework)\ImageProcessor.XML + full + AnyCPU + prompt + false + true + 4 + false + false + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Code + + + + + + + + + + + + + + + + + + + + + + Code + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ImageProcessor/ImageProcessor.csproj.DotSettings b/old/src/ImageProcessor/ImageProcessor.csproj.DotSettings similarity index 100% rename from src/ImageProcessor/ImageProcessor.csproj.DotSettings rename to old/src/ImageProcessor/ImageProcessor.csproj.DotSettings diff --git a/src/ImageProcessor/Imaging/AnchorPosition.cs b/old/src/ImageProcessor/Imaging/AnchorPosition.cs similarity index 100% rename from src/ImageProcessor/Imaging/AnchorPosition.cs rename to old/src/ImageProcessor/Imaging/AnchorPosition.cs diff --git a/src/ImageProcessor/Imaging/Colors/CmykColor.cs b/old/src/ImageProcessor/Imaging/Colors/CmykColor.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/CmykColor.cs rename to old/src/ImageProcessor/Imaging/Colors/CmykColor.cs diff --git a/src/ImageProcessor/Imaging/Colors/Color32.cs b/old/src/ImageProcessor/Imaging/Colors/Color32.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/Color32.cs rename to old/src/ImageProcessor/Imaging/Colors/Color32.cs diff --git a/src/ImageProcessor/Imaging/Colors/ColorExtensions.cs b/old/src/ImageProcessor/Imaging/Colors/ColorExtensions.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/ColorExtensions.cs rename to old/src/ImageProcessor/Imaging/Colors/ColorExtensions.cs diff --git a/src/ImageProcessor/Imaging/Colors/HSLAColor.cs b/old/src/ImageProcessor/Imaging/Colors/HSLAColor.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/HSLAColor.cs rename to old/src/ImageProcessor/Imaging/Colors/HSLAColor.cs diff --git a/src/ImageProcessor/Imaging/Colors/RGBAColor.cs b/old/src/ImageProcessor/Imaging/Colors/RGBAColor.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/RGBAColor.cs rename to old/src/ImageProcessor/Imaging/Colors/RGBAColor.cs diff --git a/src/ImageProcessor/Imaging/Colors/RgbaComponent.cs b/old/src/ImageProcessor/Imaging/Colors/RgbaComponent.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/RgbaComponent.cs rename to old/src/ImageProcessor/Imaging/Colors/RgbaComponent.cs diff --git a/src/ImageProcessor/Imaging/Colors/YCbCrColor.cs b/old/src/ImageProcessor/Imaging/Colors/YCbCrColor.cs similarity index 100% rename from src/ImageProcessor/Imaging/Colors/YCbCrColor.cs rename to old/src/ImageProcessor/Imaging/Colors/YCbCrColor.cs diff --git a/src/ImageProcessor/Imaging/Convolution.cs b/old/src/ImageProcessor/Imaging/Convolution.cs similarity index 100% rename from src/ImageProcessor/Imaging/Convolution.cs rename to old/src/ImageProcessor/Imaging/Convolution.cs diff --git a/src/ImageProcessor/Imaging/CropLayer.cs b/old/src/ImageProcessor/Imaging/CropLayer.cs similarity index 100% rename from src/ImageProcessor/Imaging/CropLayer.cs rename to old/src/ImageProcessor/Imaging/CropLayer.cs diff --git a/src/ImageProcessor/Imaging/CropMode.cs b/old/src/ImageProcessor/Imaging/CropMode.cs similarity index 100% rename from src/ImageProcessor/Imaging/CropMode.cs rename to old/src/ImageProcessor/Imaging/CropMode.cs diff --git a/src/ImageProcessor/Imaging/FastBitmap.cs b/old/src/ImageProcessor/Imaging/FastBitmap.cs similarity index 100% rename from src/ImageProcessor/Imaging/FastBitmap.cs rename to old/src/ImageProcessor/Imaging/FastBitmap.cs diff --git a/src/ImageProcessor/Imaging/Filters/Artistic/HalftoneFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Artistic/HalftoneFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Artistic/HalftoneFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Artistic/HalftoneFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Artistic/OilPaintingFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Artistic/OilPaintingFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Artistic/OilPaintingFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Artistic/OilPaintingFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Binarization/BinaryThreshold.cs b/old/src/ImageProcessor/Imaging/Filters/Binarization/BinaryThreshold.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Binarization/BinaryThreshold.cs rename to old/src/ImageProcessor/Imaging/Filters/Binarization/BinaryThreshold.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/ConvolutionFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/ConvolutionFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/ConvolutionFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/ConvolutionFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/I2DEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/I2DEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/I2DEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/I2DEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/IEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/IEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/IEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/IEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/KayyaliEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/KayyaliEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/KayyaliEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/KayyaliEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/KirschEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/KirschEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/KirschEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/KirschEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian3X3EdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian3X3EdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian3X3EdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian3X3EdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian5X5EdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian5X5EdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian5X5EdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/Laplacian5X5EdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/LaplacianOfGaussianEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/LaplacianOfGaussianEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/LaplacianOfGaussianEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/LaplacianOfGaussianEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/PrewittEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/PrewittEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/PrewittEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/PrewittEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/RobertsCrossEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/RobertsCrossEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/RobertsCrossEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/RobertsCrossEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/ScharrEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/ScharrEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/ScharrEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/ScharrEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/EdgeDetection/SobelEdgeFilter.cs b/old/src/ImageProcessor/Imaging/Filters/EdgeDetection/SobelEdgeFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/EdgeDetection/SobelEdgeFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/EdgeDetection/SobelEdgeFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/Class1.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Class1.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/Class1.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Class1.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/EmbeddedHaarCascades.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/EmbeddedHaarCascades.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/EmbeddedHaarCascades.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/EmbeddedHaarCascades.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/GroupMatching.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/GroupMatching.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/GroupMatching.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/GroupMatching.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascade.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascade.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascade.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascade.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeSerializationObject.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeSerializationObject.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeSerializationObject.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeSerializationObject.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeStage.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeStage.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeStage.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeStage.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeWriter.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeWriter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeWriter.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarCascadeWriter.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarClassifier.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarClassifier.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarClassifier.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarClassifier.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeature.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeature.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeature.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeature.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeatureNode.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeatureNode.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeatureNode.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarFeatureNode.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarRectangle.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarRectangle.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarRectangle.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarCascade/HaarRectangle.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarObjectDetector.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarObjectDetector.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarObjectDetector.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/HaarObjectDetector.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorScalingMode.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorScalingMode.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorScalingMode.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorScalingMode.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorSearchMode.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorSearchMode.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorSearchMode.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/ObjectDetectorSearchMode.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/RectangleGroupMatching.cs b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/RectangleGroupMatching.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/RectangleGroupMatching.cs rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/RectangleGroupMatching.cs diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_alt.xml.REMOVED.git-id b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_alt.xml.REMOVED.git-id similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_alt.xml.REMOVED.git-id rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_alt.xml.REMOVED.git-id diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_default.xml.REMOVED.git-id b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_default.xml.REMOVED.git-id similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_default.xml.REMOVED.git-id rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_default.xml.REMOVED.git-id diff --git a/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_legacy.xml.REMOVED.git-id b/old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_legacy.xml.REMOVED.git-id similarity index 100% rename from src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_legacy.xml.REMOVED.git-id rename to old/src/ImageProcessor/Imaging/Filters/ObjectDetection/Resources/haarcascade_frontalface_legacy.xml.REMOVED.git-id diff --git a/src/ImageProcessor/Imaging/Filters/Photo/BlackWhiteMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/BlackWhiteMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/BlackWhiteMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/BlackWhiteMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/ColorMatrixes.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/ColorMatrixes.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/ColorMatrixes.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/ColorMatrixes.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/ComicMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/ComicMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/ComicMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/ComicMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/GothamMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/GothamMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/GothamMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/GothamMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/GreyScaleMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/GreyScaleMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/GreyScaleMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/GreyScaleMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/HiSatchMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/HiSatchMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/HiSatchMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/HiSatchMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/IMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/IMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/IMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/IMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/InvertMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/InvertMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/InvertMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/InvertMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/LoSatchMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/LoSatchMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/LoSatchMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/LoSatchMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/LomographMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/LomographMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/LomographMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/LomographMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/MatrixFilterBase.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/MatrixFilterBase.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/MatrixFilterBase.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/MatrixFilterBase.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/MatrixFilters.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/MatrixFilters.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/MatrixFilters.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/MatrixFilters.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/PolaroidMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/PolaroidMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/PolaroidMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/PolaroidMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Filters/Photo/SepiaMatrixFilter.cs b/old/src/ImageProcessor/Imaging/Filters/Photo/SepiaMatrixFilter.cs similarity index 100% rename from src/ImageProcessor/Imaging/Filters/Photo/SepiaMatrixFilter.cs rename to old/src/ImageProcessor/Imaging/Filters/Photo/SepiaMatrixFilter.cs diff --git a/src/ImageProcessor/Imaging/Formats/BitmapFormat.cs b/old/src/ImageProcessor/Imaging/Formats/BitmapFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/BitmapFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/BitmapFormat.cs diff --git a/src/ImageProcessor/Imaging/Formats/FormatBase.cs b/old/src/ImageProcessor/Imaging/Formats/FormatBase.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/FormatBase.cs rename to old/src/ImageProcessor/Imaging/Formats/FormatBase.cs diff --git a/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs b/old/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/FormatUtilities.cs rename to old/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs diff --git a/src/ImageProcessor/Imaging/Formats/GifDecoder.cs b/old/src/ImageProcessor/Imaging/Formats/GifDecoder.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/GifDecoder.cs rename to old/src/ImageProcessor/Imaging/Formats/GifDecoder.cs diff --git a/src/ImageProcessor/Imaging/Formats/GifEncoder.cs b/old/src/ImageProcessor/Imaging/Formats/GifEncoder.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/GifEncoder.cs rename to old/src/ImageProcessor/Imaging/Formats/GifEncoder.cs diff --git a/src/ImageProcessor/Imaging/Formats/GifFormat.cs b/old/src/ImageProcessor/Imaging/Formats/GifFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/GifFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/GifFormat.cs diff --git a/src/ImageProcessor/Imaging/Formats/GifFrame.cs b/old/src/ImageProcessor/Imaging/Formats/GifFrame.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/GifFrame.cs rename to old/src/ImageProcessor/Imaging/Formats/GifFrame.cs diff --git a/src/ImageProcessor/Imaging/Formats/IQuantizableImageFormat.cs b/old/src/ImageProcessor/Imaging/Formats/IQuantizableImageFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/IQuantizableImageFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/IQuantizableImageFormat.cs diff --git a/src/ImageProcessor/Imaging/Formats/ISupportedImageFormat.cs b/old/src/ImageProcessor/Imaging/Formats/ISupportedImageFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/ISupportedImageFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/ISupportedImageFormat.cs diff --git a/src/ImageProcessor/Imaging/Formats/JpegFormat.cs b/old/src/ImageProcessor/Imaging/Formats/JpegFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/JpegFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/JpegFormat.cs diff --git a/src/ImageProcessor/Imaging/Formats/PngFormat.cs b/old/src/ImageProcessor/Imaging/Formats/PngFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/PngFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/PngFormat.cs diff --git a/src/ImageProcessor/Imaging/Formats/TiffFormat.cs b/old/src/ImageProcessor/Imaging/Formats/TiffFormat.cs similarity index 100% rename from src/ImageProcessor/Imaging/Formats/TiffFormat.cs rename to old/src/ImageProcessor/Imaging/Formats/TiffFormat.cs diff --git a/src/ImageProcessor/Imaging/GaussianLayer.cs b/old/src/ImageProcessor/Imaging/GaussianLayer.cs similarity index 100% rename from src/ImageProcessor/Imaging/GaussianLayer.cs rename to old/src/ImageProcessor/Imaging/GaussianLayer.cs diff --git a/src/ImageProcessor/Imaging/Helpers/Adjustments.cs b/old/src/ImageProcessor/Imaging/Helpers/Adjustments.cs similarity index 100% rename from src/ImageProcessor/Imaging/Helpers/Adjustments.cs rename to old/src/ImageProcessor/Imaging/Helpers/Adjustments.cs diff --git a/src/ImageProcessor/Imaging/Helpers/Effects.cs b/old/src/ImageProcessor/Imaging/Helpers/Effects.cs similarity index 100% rename from src/ImageProcessor/Imaging/Helpers/Effects.cs rename to old/src/ImageProcessor/Imaging/Helpers/Effects.cs diff --git a/src/ImageProcessor/Imaging/Helpers/ImageMaths.cs b/old/src/ImageProcessor/Imaging/Helpers/ImageMaths.cs similarity index 100% rename from src/ImageProcessor/Imaging/Helpers/ImageMaths.cs rename to old/src/ImageProcessor/Imaging/Helpers/ImageMaths.cs diff --git a/src/ImageProcessor/Imaging/Helpers/PixelOperations.cs b/old/src/ImageProcessor/Imaging/Helpers/PixelOperations.cs similarity index 100% rename from src/ImageProcessor/Imaging/Helpers/PixelOperations.cs rename to old/src/ImageProcessor/Imaging/Helpers/PixelOperations.cs diff --git a/src/ImageProcessor/Imaging/ImageLayer.cs b/old/src/ImageProcessor/Imaging/ImageLayer.cs similarity index 100% rename from src/ImageProcessor/Imaging/ImageLayer.cs rename to old/src/ImageProcessor/Imaging/ImageLayer.cs diff --git a/src/ImageProcessor/Imaging/MetaData/ExifPropertyTag.cs b/old/src/ImageProcessor/Imaging/MetaData/ExifPropertyTag.cs similarity index 100% rename from src/ImageProcessor/Imaging/MetaData/ExifPropertyTag.cs rename to old/src/ImageProcessor/Imaging/MetaData/ExifPropertyTag.cs diff --git a/src/ImageProcessor/Imaging/MetaData/ExifPropertyTagType.cs b/old/src/ImageProcessor/Imaging/MetaData/ExifPropertyTagType.cs similarity index 100% rename from src/ImageProcessor/Imaging/MetaData/ExifPropertyTagType.cs rename to old/src/ImageProcessor/Imaging/MetaData/ExifPropertyTagType.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/IQuantizer.cs b/old/src/ImageProcessor/Imaging/Quantizers/IQuantizer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/IQuantizer.cs rename to old/src/ImageProcessor/Imaging/Quantizers/IQuantizer.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/OctreeQuantizer.cs b/old/src/ImageProcessor/Imaging/Quantizers/OctreeQuantizer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/OctreeQuantizer.cs rename to old/src/ImageProcessor/Imaging/Quantizers/OctreeQuantizer.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/Quantizer.cs b/old/src/ImageProcessor/Imaging/Quantizers/Quantizer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/Quantizer.cs rename to old/src/ImageProcessor/Imaging/Quantizers/Quantizer.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Box.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Box.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Box.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Box.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ColorMoment.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ColorMoment.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ColorMoment.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ColorMoment.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/CubeCut.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/CubeCut.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/CubeCut.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/CubeCut.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Histogram.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Histogram.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Histogram.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/Histogram.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/IWuQuantizer.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/IWuQuantizer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/IWuQuantizer.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/IWuQuantizer.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ImageBuffer.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ImageBuffer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ImageBuffer.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/ImageBuffer.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteColorHistory.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteColorHistory.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteColorHistory.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteColorHistory.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteLookup.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteLookup.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteLookup.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/PaletteLookup.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizer.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizer.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizer.cs diff --git a/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizerBase.cs b/old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizerBase.cs similarity index 100% rename from src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizerBase.cs rename to old/src/ImageProcessor/Imaging/Quantizers/WuQuantizer/WuQuantizerBase.cs diff --git a/src/ImageProcessor/Imaging/ResizeLayer.cs b/old/src/ImageProcessor/Imaging/ResizeLayer.cs similarity index 100% rename from src/ImageProcessor/Imaging/ResizeLayer.cs rename to old/src/ImageProcessor/Imaging/ResizeLayer.cs diff --git a/src/ImageProcessor/Imaging/ResizeMode.cs b/old/src/ImageProcessor/Imaging/ResizeMode.cs similarity index 100% rename from src/ImageProcessor/Imaging/ResizeMode.cs rename to old/src/ImageProcessor/Imaging/ResizeMode.cs diff --git a/src/ImageProcessor/Imaging/Resizer.cs b/old/src/ImageProcessor/Imaging/Resizer.cs similarity index 100% rename from src/ImageProcessor/Imaging/Resizer.cs rename to old/src/ImageProcessor/Imaging/Resizer.cs diff --git a/src/ImageProcessor/Imaging/RoundedCornerLayer.cs b/old/src/ImageProcessor/Imaging/RoundedCornerLayer.cs similarity index 100% rename from src/ImageProcessor/Imaging/RoundedCornerLayer.cs rename to old/src/ImageProcessor/Imaging/RoundedCornerLayer.cs diff --git a/src/ImageProcessor/Imaging/TextLayer.cs b/old/src/ImageProcessor/Imaging/TextLayer.cs similarity index 100% rename from src/ImageProcessor/Imaging/TextLayer.cs rename to old/src/ImageProcessor/Imaging/TextLayer.cs diff --git a/src/ImageProcessor/Processors/Alpha.cs b/old/src/ImageProcessor/Processors/Alpha.cs similarity index 100% rename from src/ImageProcessor/Processors/Alpha.cs rename to old/src/ImageProcessor/Processors/Alpha.cs diff --git a/src/ImageProcessor/Processors/AutoRotate.cs b/old/src/ImageProcessor/Processors/AutoRotate.cs similarity index 100% rename from src/ImageProcessor/Processors/AutoRotate.cs rename to old/src/ImageProcessor/Processors/AutoRotate.cs diff --git a/src/ImageProcessor/Processors/BackgroundColor.cs b/old/src/ImageProcessor/Processors/BackgroundColor.cs similarity index 100% rename from src/ImageProcessor/Processors/BackgroundColor.cs rename to old/src/ImageProcessor/Processors/BackgroundColor.cs diff --git a/src/ImageProcessor/Processors/Brightness.cs b/old/src/ImageProcessor/Processors/Brightness.cs similarity index 100% rename from src/ImageProcessor/Processors/Brightness.cs rename to old/src/ImageProcessor/Processors/Brightness.cs diff --git a/src/ImageProcessor/Processors/Contrast.cs b/old/src/ImageProcessor/Processors/Contrast.cs similarity index 100% rename from src/ImageProcessor/Processors/Contrast.cs rename to old/src/ImageProcessor/Processors/Contrast.cs diff --git a/src/ImageProcessor/Processors/Crop.cs b/old/src/ImageProcessor/Processors/Crop.cs similarity index 100% rename from src/ImageProcessor/Processors/Crop.cs rename to old/src/ImageProcessor/Processors/Crop.cs diff --git a/src/ImageProcessor/Processors/DetectEdges.cs b/old/src/ImageProcessor/Processors/DetectEdges.cs similarity index 100% rename from src/ImageProcessor/Processors/DetectEdges.cs rename to old/src/ImageProcessor/Processors/DetectEdges.cs diff --git a/src/ImageProcessor/Processors/DetectObjects.cs b/old/src/ImageProcessor/Processors/DetectObjects.cs similarity index 100% rename from src/ImageProcessor/Processors/DetectObjects.cs rename to old/src/ImageProcessor/Processors/DetectObjects.cs diff --git a/src/ImageProcessor/Processors/EntropyCrop.cs b/old/src/ImageProcessor/Processors/EntropyCrop.cs similarity index 100% rename from src/ImageProcessor/Processors/EntropyCrop.cs rename to old/src/ImageProcessor/Processors/EntropyCrop.cs diff --git a/src/ImageProcessor/Processors/Filter.cs b/old/src/ImageProcessor/Processors/Filter.cs similarity index 100% rename from src/ImageProcessor/Processors/Filter.cs rename to old/src/ImageProcessor/Processors/Filter.cs diff --git a/src/ImageProcessor/Processors/Flip.cs b/old/src/ImageProcessor/Processors/Flip.cs similarity index 100% rename from src/ImageProcessor/Processors/Flip.cs rename to old/src/ImageProcessor/Processors/Flip.cs diff --git a/src/ImageProcessor/Processors/Format.cs b/old/src/ImageProcessor/Processors/Format.cs similarity index 100% rename from src/ImageProcessor/Processors/Format.cs rename to old/src/ImageProcessor/Processors/Format.cs diff --git a/src/ImageProcessor/Processors/Gamma.cs b/old/src/ImageProcessor/Processors/Gamma.cs similarity index 100% rename from src/ImageProcessor/Processors/Gamma.cs rename to old/src/ImageProcessor/Processors/Gamma.cs diff --git a/src/ImageProcessor/Processors/GaussianBlur.cs b/old/src/ImageProcessor/Processors/GaussianBlur.cs similarity index 100% rename from src/ImageProcessor/Processors/GaussianBlur.cs rename to old/src/ImageProcessor/Processors/GaussianBlur.cs diff --git a/src/ImageProcessor/Processors/GaussianSharpen.cs b/old/src/ImageProcessor/Processors/GaussianSharpen.cs similarity index 100% rename from src/ImageProcessor/Processors/GaussianSharpen.cs rename to old/src/ImageProcessor/Processors/GaussianSharpen.cs diff --git a/src/ImageProcessor/Processors/Halftone.cs b/old/src/ImageProcessor/Processors/Halftone.cs similarity index 100% rename from src/ImageProcessor/Processors/Halftone.cs rename to old/src/ImageProcessor/Processors/Halftone.cs diff --git a/src/ImageProcessor/Processors/Hue.cs b/old/src/ImageProcessor/Processors/Hue.cs similarity index 100% rename from src/ImageProcessor/Processors/Hue.cs rename to old/src/ImageProcessor/Processors/Hue.cs diff --git a/src/ImageProcessor/Processors/IGraphicsProcessor.cs b/old/src/ImageProcessor/Processors/IGraphicsProcessor.cs similarity index 100% rename from src/ImageProcessor/Processors/IGraphicsProcessor.cs rename to old/src/ImageProcessor/Processors/IGraphicsProcessor.cs diff --git a/src/ImageProcessor/Processors/Mask.cs b/old/src/ImageProcessor/Processors/Mask.cs similarity index 100% rename from src/ImageProcessor/Processors/Mask.cs rename to old/src/ImageProcessor/Processors/Mask.cs diff --git a/src/ImageProcessor/Processors/Meta.cs b/old/src/ImageProcessor/Processors/Meta.cs similarity index 100% rename from src/ImageProcessor/Processors/Meta.cs rename to old/src/ImageProcessor/Processors/Meta.cs diff --git a/src/ImageProcessor/Processors/Overlay.cs b/old/src/ImageProcessor/Processors/Overlay.cs similarity index 100% rename from src/ImageProcessor/Processors/Overlay.cs rename to old/src/ImageProcessor/Processors/Overlay.cs diff --git a/src/ImageProcessor/Processors/Pixelate.cs b/old/src/ImageProcessor/Processors/Pixelate.cs similarity index 100% rename from src/ImageProcessor/Processors/Pixelate.cs rename to old/src/ImageProcessor/Processors/Pixelate.cs diff --git a/src/ImageProcessor/Processors/Quality.cs b/old/src/ImageProcessor/Processors/Quality.cs similarity index 100% rename from src/ImageProcessor/Processors/Quality.cs rename to old/src/ImageProcessor/Processors/Quality.cs diff --git a/src/ImageProcessor/Processors/ReplaceColor.cs b/old/src/ImageProcessor/Processors/ReplaceColor.cs similarity index 100% rename from src/ImageProcessor/Processors/ReplaceColor.cs rename to old/src/ImageProcessor/Processors/ReplaceColor.cs diff --git a/src/ImageProcessor/Processors/Resize.cs b/old/src/ImageProcessor/Processors/Resize.cs similarity index 100% rename from src/ImageProcessor/Processors/Resize.cs rename to old/src/ImageProcessor/Processors/Resize.cs diff --git a/src/ImageProcessor/Processors/Rotate.cs b/old/src/ImageProcessor/Processors/Rotate.cs similarity index 100% rename from src/ImageProcessor/Processors/Rotate.cs rename to old/src/ImageProcessor/Processors/Rotate.cs diff --git a/src/ImageProcessor/Processors/RotateBounded.cs b/old/src/ImageProcessor/Processors/RotateBounded.cs similarity index 100% rename from src/ImageProcessor/Processors/RotateBounded.cs rename to old/src/ImageProcessor/Processors/RotateBounded.cs diff --git a/src/ImageProcessor/Processors/RoundedCorners.cs b/old/src/ImageProcessor/Processors/RoundedCorners.cs similarity index 100% rename from src/ImageProcessor/Processors/RoundedCorners.cs rename to old/src/ImageProcessor/Processors/RoundedCorners.cs diff --git a/src/ImageProcessor/Processors/Saturation.cs b/old/src/ImageProcessor/Processors/Saturation.cs similarity index 100% rename from src/ImageProcessor/Processors/Saturation.cs rename to old/src/ImageProcessor/Processors/Saturation.cs diff --git a/src/ImageProcessor/Processors/Tint.cs b/old/src/ImageProcessor/Processors/Tint.cs similarity index 100% rename from src/ImageProcessor/Processors/Tint.cs rename to old/src/ImageProcessor/Processors/Tint.cs diff --git a/src/ImageProcessor/Processors/Vignette.cs b/old/src/ImageProcessor/Processors/Vignette.cs similarity index 100% rename from src/ImageProcessor/Processors/Vignette.cs rename to old/src/ImageProcessor/Processors/Vignette.cs diff --git a/src/ImageProcessor/Processors/Watermark.cs b/old/src/ImageProcessor/Processors/Watermark.cs similarity index 100% rename from src/ImageProcessor/Processors/Watermark.cs rename to old/src/ImageProcessor/Processors/Watermark.cs diff --git a/old/src/ImageProcessor/Properties/AssemblyInfo.cs b/old/src/ImageProcessor/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..c589c6098 --- /dev/null +++ b/old/src/ImageProcessor/Properties/AssemblyInfo.cs @@ -0,0 +1,48 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright (c) James South. +// Licensed under the Apache License, Version 2.0. +// +// +// AssemblyInfo.cs +// +// -------------------------------------------------------------------------------------------------------------------- + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ImageProcessor")] +[assembly: AssemblyDescription("A library for on-the-fly processing of image files written in C#")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("James South")] +[assembly: AssemblyProduct("ImageProcessor")] +[assembly: AssemblyCopyright("Copyright © James South")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("bdaae9bd-0dc8-4b06-8722-e2e0c9a74301")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("2.2.4.0")] +[assembly: AssemblyFileVersion("2.2.4.0")] + +[assembly: InternalsVisibleTo("ImageProcessor.UnitTests")] +[assembly: InternalsVisibleTo("ImageProcessor.Web")] diff --git a/src/ImageProcessor/Settings.StyleCop b/old/src/ImageProcessor/Settings.StyleCop similarity index 100% rename from src/ImageProcessor/Settings.StyleCop rename to old/src/ImageProcessor/Settings.StyleCop diff --git a/src/ImageProcessor_Mono.sln b/old/src/ImageProcessor_Mono.sln similarity index 100% rename from src/ImageProcessor_Mono.sln rename to old/src/ImageProcessor_Mono.sln diff --git a/src/Packages.dgml b/old/src/Packages.dgml similarity index 100% rename from src/Packages.dgml rename to old/src/Packages.dgml diff --git a/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/AzureBlobCache.cs b/old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/AzureBlobCache.cs similarity index 100% rename from src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/AzureBlobCache.cs rename to old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/AzureBlobCache.cs diff --git a/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/ImageProcessor.Web.Plugins.AzureBlobCache.csproj b/old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/ImageProcessor.Web.Plugins.AzureBlobCache.csproj similarity index 100% rename from src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/ImageProcessor.Web.Plugins.AzureBlobCache.csproj rename to old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/ImageProcessor.Web.Plugins.AzureBlobCache.csproj diff --git a/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/Properties/AssemblyInfo.cs b/old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/Properties/AssemblyInfo.cs similarity index 100% rename from src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/Properties/AssemblyInfo.cs rename to old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/Properties/AssemblyInfo.cs diff --git a/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/packages.config b/old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/packages.config similarity index 100% rename from src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/packages.config rename to old/src/Plugins/ImageProcessor.Web/ImageProcessor.Web.Plugins.AzureBlobCache/packages.config diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/CairBootstrapper.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/CairBootstrapper.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/CairBootstrapper.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/CairBootstrapper.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageFactoryExtensions.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageFactoryExtensions.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageFactoryExtensions.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageFactoryExtensions.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageProcessor.Plugins.Cair.csproj b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageProcessor.Plugins.Cair.csproj similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageProcessor.Plugins.Cair.csproj rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/ImageProcessor.Plugins.Cair.csproj diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ContentAwareResizeLayer.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ContentAwareResizeLayer.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ContentAwareResizeLayer.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ContentAwareResizeLayer.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ConvolutionType.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ConvolutionType.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ConvolutionType.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/ConvolutionType.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/EnergyFunction.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/EnergyFunction.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/EnergyFunction.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/EnergyFunction.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/OutputType.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/OutputType.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/OutputType.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Imaging/OutputType.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Processors/ContentAwareResize.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Processors/ContentAwareResize.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Processors/ContentAwareResize.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Processors/ContentAwareResize.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Properties/AssemblyInfo.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Properties/AssemblyInfo.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Properties/AssemblyInfo.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Properties/AssemblyInfo.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/CAIR.exe.REMOVED.git-id b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/CAIR.exe.REMOVED.git-id similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/CAIR.exe.REMOVED.git-id rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/CAIR.exe.REMOVED.git-id diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/GPL.txt b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/GPL.txt similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/GPL.txt rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/GPL.txt diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/ReadMe.txt b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/ReadMe.txt similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/ReadMe.txt rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/ReadMe.txt diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/Usage.txt b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/Usage.txt similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/Usage.txt rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/Usage.txt diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/pthreadVSE2.dll.REMOVED.git-id b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/pthreadVSE2.dll.REMOVED.git-id similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/pthreadVSE2.dll.REMOVED.git-id rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Resources/Unmanaged/x86/pthreadVSE2.dll.REMOVED.git-id diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Settings.StyleCop b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Settings.StyleCop similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Settings.StyleCop rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.Cair/Settings.StyleCop diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/ImageProcessor.Plugins.WebP.csproj b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/ImageProcessor.Plugins.WebP.csproj similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/ImageProcessor.Plugins.WebP.csproj rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/ImageProcessor.Plugins.WebP.csproj diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/NativeMethods.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/NativeMethods.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/NativeMethods.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/NativeMethods.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/WebPFormat.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/WebPFormat.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/WebPFormat.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Imaging/Formats/WebPFormat.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Properties/AssemblyInfo.cs b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Properties/AssemblyInfo.cs similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Properties/AssemblyInfo.cs rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Properties/AssemblyInfo.cs diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/README.md b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/README.md similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/README.md rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/README.md diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x64/libwebp.dll.REMOVED.git-id b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x64/libwebp.dll.REMOVED.git-id similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x64/libwebp.dll.REMOVED.git-id rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x64/libwebp.dll.REMOVED.git-id diff --git a/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x86/libwebp.dll.REMOVED.git-id b/old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x86/libwebp.dll.REMOVED.git-id similarity index 100% rename from src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x86/libwebp.dll.REMOVED.git-id rename to old/src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Resources/Unmanaged/x86/libwebp.dll.REMOVED.git-id diff --git a/src/Settings.StyleCop b/old/src/Settings.StyleCop similarity index 100% rename from src/Settings.StyleCop rename to old/src/Settings.StyleCop diff --git a/src/TestWebsites/.gitignore b/old/src/TestWebsites/.gitignore similarity index 100% rename from src/TestWebsites/.gitignore rename to old/src/TestWebsites/.gitignore diff --git a/src/TestWebsites/MVC/App_Start/FilterConfig.cs b/old/src/TestWebsites/MVC/App_Start/FilterConfig.cs similarity index 100% rename from src/TestWebsites/MVC/App_Start/FilterConfig.cs rename to old/src/TestWebsites/MVC/App_Start/FilterConfig.cs diff --git a/src/TestWebsites/MVC/App_Start/RouteConfig.cs b/old/src/TestWebsites/MVC/App_Start/RouteConfig.cs similarity index 100% rename from src/TestWebsites/MVC/App_Start/RouteConfig.cs rename to old/src/TestWebsites/MVC/App_Start/RouteConfig.cs diff --git a/src/TestWebsites/MVC/App_Start/WebApiConfig.cs b/old/src/TestWebsites/MVC/App_Start/WebApiConfig.cs similarity index 100% rename from src/TestWebsites/MVC/App_Start/WebApiConfig.cs rename to old/src/TestWebsites/MVC/App_Start/WebApiConfig.cs diff --git a/src/TestWebsites/MVC/Content/responsive.min.css.REMOVED.git-id b/old/src/TestWebsites/MVC/Content/responsive.min.css.REMOVED.git-id similarity index 100% rename from src/TestWebsites/MVC/Content/responsive.min.css.REMOVED.git-id rename to old/src/TestWebsites/MVC/Content/responsive.min.css.REMOVED.git-id diff --git a/src/TestWebsites/MVC/Controllers/HomeController.cs b/old/src/TestWebsites/MVC/Controllers/HomeController.cs similarity index 100% rename from src/TestWebsites/MVC/Controllers/HomeController.cs rename to old/src/TestWebsites/MVC/Controllers/HomeController.cs diff --git a/src/TestWebsites/MVC/Global.asax b/old/src/TestWebsites/MVC/Global.asax similarity index 100% rename from src/TestWebsites/MVC/Global.asax rename to old/src/TestWebsites/MVC/Global.asax diff --git a/src/TestWebsites/MVC/Global.asax.cs b/old/src/TestWebsites/MVC/Global.asax.cs similarity index 100% rename from src/TestWebsites/MVC/Global.asax.cs rename to old/src/TestWebsites/MVC/Global.asax.cs diff --git a/src/TestWebsites/MVC/Properties/AssemblyInfo.cs b/old/src/TestWebsites/MVC/Properties/AssemblyInfo.cs similarity index 100% rename from src/TestWebsites/MVC/Properties/AssemblyInfo.cs rename to old/src/TestWebsites/MVC/Properties/AssemblyInfo.cs diff --git a/src/TestWebsites/MVC/TestImageService.cs b/old/src/TestWebsites/MVC/TestImageService.cs similarity index 100% rename from src/TestWebsites/MVC/TestImageService.cs rename to old/src/TestWebsites/MVC/TestImageService.cs diff --git a/src/TestWebsites/MVC/Test_Website_MVC.csproj b/old/src/TestWebsites/MVC/Test_Website_MVC.csproj similarity index 100% rename from src/TestWebsites/MVC/Test_Website_MVC.csproj rename to old/src/TestWebsites/MVC/Test_Website_MVC.csproj diff --git a/src/TestWebsites/MVC/Views/Home/Bmp.cshtml b/old/src/TestWebsites/MVC/Views/Home/Bmp.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/Bmp.cshtml rename to old/src/TestWebsites/MVC/Views/Home/Bmp.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/External.cshtml b/old/src/TestWebsites/MVC/Views/Home/External.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/External.cshtml rename to old/src/TestWebsites/MVC/Views/Home/External.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/Gif.cshtml b/old/src/TestWebsites/MVC/Views/Home/Gif.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/Gif.cshtml rename to old/src/TestWebsites/MVC/Views/Home/Gif.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/Index.cshtml b/old/src/TestWebsites/MVC/Views/Home/Index.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/Index.cshtml rename to old/src/TestWebsites/MVC/Views/Home/Index.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/Png.cshtml b/old/src/TestWebsites/MVC/Views/Home/Png.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/Png.cshtml rename to old/src/TestWebsites/MVC/Views/Home/Png.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/Png8.cshtml b/old/src/TestWebsites/MVC/Views/Home/Png8.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/Png8.cshtml rename to old/src/TestWebsites/MVC/Views/Home/Png8.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/Tiff.cshtml b/old/src/TestWebsites/MVC/Views/Home/Tiff.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/Tiff.cshtml rename to old/src/TestWebsites/MVC/Views/Home/Tiff.cshtml diff --git a/src/TestWebsites/MVC/Views/Home/WebP.cshtml b/old/src/TestWebsites/MVC/Views/Home/WebP.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Home/WebP.cshtml rename to old/src/TestWebsites/MVC/Views/Home/WebP.cshtml diff --git a/src/TestWebsites/MVC/Views/Shared/_Layout.cshtml b/old/src/TestWebsites/MVC/Views/Shared/_Layout.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/Shared/_Layout.cshtml rename to old/src/TestWebsites/MVC/Views/Shared/_Layout.cshtml diff --git a/src/TestWebsites/MVC/Views/Web.config b/old/src/TestWebsites/MVC/Views/Web.config similarity index 100% rename from src/TestWebsites/MVC/Views/Web.config rename to old/src/TestWebsites/MVC/Views/Web.config diff --git a/src/TestWebsites/MVC/Views/_ViewStart.cshtml b/old/src/TestWebsites/MVC/Views/_ViewStart.cshtml similarity index 100% rename from src/TestWebsites/MVC/Views/_ViewStart.cshtml rename to old/src/TestWebsites/MVC/Views/_ViewStart.cshtml diff --git a/src/TestWebsites/MVC/Web.Debug.config b/old/src/TestWebsites/MVC/Web.Debug.config similarity index 100% rename from src/TestWebsites/MVC/Web.Debug.config rename to old/src/TestWebsites/MVC/Web.Debug.config diff --git a/src/TestWebsites/MVC/Web.Release.config b/old/src/TestWebsites/MVC/Web.Release.config similarity index 100% rename from src/TestWebsites/MVC/Web.Release.config rename to old/src/TestWebsites/MVC/Web.Release.config diff --git a/src/TestWebsites/MVC/Web.config b/old/src/TestWebsites/MVC/Web.config similarity index 100% rename from src/TestWebsites/MVC/Web.config rename to old/src/TestWebsites/MVC/Web.config diff --git a/src/TestWebsites/MVC/config/imageprocessor/cache.config b/old/src/TestWebsites/MVC/config/imageprocessor/cache.config similarity index 100% rename from src/TestWebsites/MVC/config/imageprocessor/cache.config rename to old/src/TestWebsites/MVC/config/imageprocessor/cache.config diff --git a/src/TestWebsites/MVC/config/imageprocessor/processing.config b/old/src/TestWebsites/MVC/config/imageprocessor/processing.config similarity index 100% rename from src/TestWebsites/MVC/config/imageprocessor/processing.config rename to old/src/TestWebsites/MVC/config/imageprocessor/processing.config diff --git a/src/TestWebsites/MVC/config/imageprocessor/security.config b/old/src/TestWebsites/MVC/config/imageprocessor/security.config similarity index 100% rename from src/TestWebsites/MVC/config/imageprocessor/security.config rename to old/src/TestWebsites/MVC/config/imageprocessor/security.config diff --git a/src/TestWebsites/MVC/packages.config b/old/src/TestWebsites/MVC/packages.config similarity index 100% rename from src/TestWebsites/MVC/packages.config rename to old/src/TestWebsites/MVC/packages.config diff --git a/src/ImageProcessor/ImageProcessor.csproj b/src/ImageProcessor/ImageProcessor.csproj index 998a82514..474589668 100644 --- a/src/ImageProcessor/ImageProcessor.csproj +++ b/src/ImageProcessor/ImageProcessor.csproj @@ -2,263 +2,49 @@ + 11.0 Debug AnyCPU - {3B5DD734-FB7A-487D-8CE6-55E7AF9AEA7E} + {8047C4AC-7097-4DE4-B00D-6D55EBCF1D36} Library Properties ImageProcessor ImageProcessor - v4.5 - - NET45 + en-US 512 - ..\ - true - - + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Profile78 + v4.5 - true full false bin\Debug\ - DEBUG;TRACE;NET45 - prompt - 4 - bin\Debug\ImageProcessor.XML - false - true - - - - - v4.0 - Client - AnyCPU - true - full - false - bin\Debug\$(Framework)\ - DEBUG;TRACE;NET40 + DEBUG;TRACE prompt 4 - bin\$(Configuration)\$(Framework)\ImageProcessor.XML - false - true - pdbonly true bin\Release\ - TRACE;NET45 + TRACE prompt 4 - bin\Release\ImageProcessor.XML - false - true - - - - - v4.0 - Client - pdbonly - true - bin\Release\$(Framework)\ - TRACE;NET40 - prompt - 4 - bin\Release\$(Framework)\ImageProcessor.XML - false - true - - - - true - bin\All\ - DEBUG;TRACE;NET45 - bin\Debug\ImageProcessor.XML - full - AnyCPU - prompt - false - true - 4 - false - false - true - - - - - v4.0 - Client - true - bin\All\$(Framework)\ - DEBUG;TRACE;NET40 - bin\Debug\$(Framework)\ImageProcessor.XML - full - AnyCPU - prompt - false - true - 4 - false - false - true - - - - - - - - - - + - - - - - - - - - - - - - - - Code - - - - - - - - - - - - - - - - - - - - - - Code - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + \ No newline at end of file diff --git a/src/ImageProcessor/Properties/AssemblyInfo.cs b/src/ImageProcessor/Properties/AssemblyInfo.cs index c589c6098..c5f8051d5 100644 --- a/src/ImageProcessor/Properties/AssemblyInfo.cs +++ b/src/ImageProcessor/Properties/AssemblyInfo.cs @@ -1,48 +1,30 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) James South. -// Licensed under the Apache License, Version 2.0. -// -// -// AssemblyInfo.cs -// -// -------------------------------------------------------------------------------------------------------------------- - +using System.Resources; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following +// General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("ImageProcessor")] [assembly: AssemblyDescription("A library for on-the-fly processing of image files written in C#")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("James South")] +[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("ImageProcessor")] -[assembly: AssemblyCopyright("Copyright © James South")] +[assembly: AssemblyCopyright("Copyright © James South 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("bdaae9bd-0dc8-4b06-8722-e2e0c9a74301")] +[assembly: NeutralResourcesLanguage("en")] // Version information for an assembly consists of the following four values: // // Major Version -// Minor Version +// Minor Version // Build Number // Revision // -// You can specify all the values or you can default the Build and Revision Numbers +// You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.2.4.0")] -[assembly: AssemblyFileVersion("2.2.4.0")] - -[assembly: InternalsVisibleTo("ImageProcessor.UnitTests")] -[assembly: InternalsVisibleTo("ImageProcessor.Web")] +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("3.0.0.0")] +[assembly: AssemblyFileVersion("3.0.0.0")] diff --git a/src/packages/repositories.config b/src/packages/repositories.config deleted file mode 100644 index 617771d44..000000000 --- a/src/packages/repositories.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file