-
-
Notifications
You must be signed in to change notification settings - Fork 852
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Former-commit-id: 1608798677ced0acfefc47aa1d2a3d55ca9f4d05
- Loading branch information
1 parent
65accb9
commit cfe1758
Showing
26 changed files
with
436 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<MSBuildCommunityTasksPath>.\</MSBuildCommunityTasksPath> | ||
</PropertyGroup> | ||
|
||
<Import Project=".\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets" /> | ||
|
||
<!-- | ||
**************************************************** | ||
VARIABLES | ||
***************************************************** | ||
--> | ||
|
||
<PropertyGroup> | ||
<BuildConfiguration>Release</BuildConfiguration> | ||
<BuildFolder>_BuildOutput\</BuildFolder> | ||
<IncludeSymbols>False</IncludeSymbols> | ||
<BuildFolderAbsolutePath>$(MSBuildProjectDirectory)\$(BuildFolder)</BuildFolderAbsolutePath> | ||
<SolutionBinFolderAbsolutePath>$(BuildFolderAbsolutePath)ImageProcessor.Plugins.Cair\lib\net45</SolutionBinFolderAbsolutePath> | ||
<BuildInputDir>..\src\Plugins\ImageProcessor\ImageProcessor.Plugins.Cair\</BuildInputDir> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
**************************************************** | ||
TARGETS | ||
***************************************************** | ||
--> | ||
|
||
<Target Name="Build" DependsOnTargets="BuildImageProcessorPluginsCair"> | ||
<Message Text="Build finished" /> | ||
</Target> | ||
|
||
<Target Name="BuildImageProcessorPluginsCair" DependsOnTargets="SetVersionNumber"> | ||
<Message Text="Compiling ImageProcessor.Plugins.Cair project to build\$(BuildFolder)" Importance="High" /> | ||
|
||
<MSBuild Projects="$(BuildInputDir)\ImageProcessor.Plugins.Cair.csproj" Properties="WarningLevel=0;Configuration=$(BuildConfiguration);PipelineDependsOnBuild=False;OutDir=$(SolutionBinFolderAbsolutePath);" Targets="Clean;Rebuild;" BuildInParallel="False" ToolsVersion="4.0" UnloadProjectsOnCompletion="False" /> | ||
|
||
<Message Text="Finished compiling project" Importance="High" /> | ||
</Target> | ||
|
||
<Target Name="SetVersionNumber" Condition="'$(BUILD_RELEASE)'!=''"> | ||
<Message Text="Creating Version File: $(BUILD_RELEASE)"/> | ||
<ItemGroup> | ||
<AssemblyFiles Include="$(BuildInputDir)Properties\AssemblyInfo.cs;" /> | ||
</ItemGroup> | ||
|
||
<FileUpdate Files="@(AssemblyFiles)" | ||
Multiline="true" | ||
Singleline="false" | ||
Regex="(AssemblyVersion|AssemblyFileVersionAttribute|AssemblyFileVersion)\("([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)?"\)" | ||
ReplacementText="$1("$(BUILD_RELEASE)")" /> | ||
|
||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>ImageProcessor.Plugins.Cair</id> | ||
<version>1.0.0.0</version> | ||
<title>ImageProcessor.Plugins.Cair</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description> | ||
Adds support to ImageProcessor for Content Aware Image Resizing. | ||
|
||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
|
||
Feedback is always welcome | ||
</description> | ||
<summary>Adds support to ImageProcessor for Content Aware Image Resizing.</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags> | ||
Image Imaging ASP Performance Processing HttpModule Cache Resize AutoRotate Rotate RoundedCorners | ||
Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg | ||
Bitmap Png WebP Tiff Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated EXIF Cair SeamCarving | ||
</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\_BuildOutput\ImageProcessor.Plugins.Cair\lib\net45\ImageProcessor.Plugins.Cair.dll" target="lib\net45\ImageProcessor.Plugins.Cair.dll" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>ImageProcessor.Plugins.WebP</id> | ||
<version>1.0.0.0</version> | ||
<title>ImageProcessor.Plugins.WebP</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Adds support to ImageProcessor for the WebP image format. | ||
<metadata> | ||
<id>ImageProcessor.Plugins.WebP</id> | ||
<version>1.0.0.0</version> | ||
<title>ImageProcessor.Plugins.WebP</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description> | ||
Adds support to ImageProcessor for the WebP image format. | ||
|
||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
|
||
Feedback is always welcome</description> | ||
<summary>Adds support to ImageProcessor for the WebP image format.</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags>Image Imaging ASP Performance Processing HttpModule Cache Resize Rotate RoundedCorners Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg Bitmap Png WebP Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\_BuildOutput\ImageProcessor.Plugins.WebP\lib\net45\ImageProcessor.Plugins.WebP.dll" target="lib\net45\ImageProcessor.Plugins.WebP.dll" /> | ||
<file src="..\content\ImageProcessor.Plugins.WebP\web.config.transform" target="content\web.config.transform" /> | ||
</files> | ||
Feedback is always welcome | ||
</description> | ||
<summary>Adds support to ImageProcessor for the WebP image format.</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags> | ||
Image Imaging ASP Performance Processing HttpModule Cache Resize AutoRotate Rotate RoundedCorners | ||
Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg | ||
Bitmap Png WebP Tiff Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated EXIF Cair SeamCarving | ||
</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\_BuildOutput\ImageProcessor.Plugins.WebP\lib\net45\ImageProcessor.Plugins.WebP.dll" target="lib\net45\ImageProcessor.Plugins.WebP.dll" /> | ||
<file src="..\content\ImageProcessor.Plugins.WebP\web.config.transform" target="content\web.config.transform" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>ImageProcessor.Web.Config</id> | ||
<version>1.1.0.0</version> | ||
<title>ImageProcessor.Web.Config</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Adds configuration to your ImageProcessor.Web solution to allow you to override the default settings. | ||
<metadata> | ||
<id>ImageProcessor.Web.Config</id> | ||
<version>1.1.0.0</version> | ||
<title>ImageProcessor.Web.Config</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description> | ||
Adds configuration to your ImageProcessor.Web solution to allow you to override the default settings. | ||
|
||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
|
||
Feedback is always welcome</description> | ||
<summary>ImageProcessor.Web configuration settings for ASP.NET websites.</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags>Image Imaging ASP Performance Processing HttpModule Cache Resize Rotate RoundedCorners Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg Bitmap Png WebP Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
<dependency id="ImageProcessor.Web" version="4.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\..\src\ImageProcessor.Web\Configuration\Resources\cache.config" target="content\config\imageprocessor\cache.config" /> | ||
<file src="..\..\src\ImageProcessor.Web\Configuration\Resources\processing.config" target="content\config\imageprocessor\processing.config" /> | ||
<file src="..\..\src\ImageProcessor.Web\Configuration\Resources\security.config" target="content\config\imageprocessor\security.config" /> | ||
<file src="..\content\ImageProcessor.Web.Config\web.config.transform" target="content\web.config.transform" /> | ||
</files> | ||
Feedback is always welcome | ||
</description> | ||
<summary>ImageProcessor.Web configuration settings for ASP.NET websites.</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags> | ||
Image Imaging ASP Performance Processing HttpModule Cache Resize AutoRotate Rotate RoundedCorners | ||
Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg | ||
Bitmap Png WebP Tiff Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated EXIF Cair SeamCarving | ||
</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
<dependency id="ImageProcessor.Web" version="4.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\..\src\ImageProcessor.Web\Configuration\Resources\cache.config" target="content\config\imageprocessor\cache.config" /> | ||
<file src="..\..\src\ImageProcessor.Web\Configuration\Resources\processing.config" target="content\config\imageprocessor\processing.config" /> | ||
<file src="..\..\src\ImageProcessor.Web\Configuration\Resources\security.config" target="content\config\imageprocessor\security.config" /> | ||
<file src="..\content\ImageProcessor.Web.Config\web.config.transform" target="content\web.config.transform" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>ImageProcessor.Web</id> | ||
<version>3.2.0.0</version> | ||
<title>ImageProcessor.Web</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>ImageProcessor.Web adds a configurable HttpModule to your website which allows on-the-fly processing of image files. The module also comes with a file and browser based cache that can handle millions of images, increasing your processing output and saving precious server memory. | ||
<metadata> | ||
<id>ImageProcessor.Web</id> | ||
<version>3.2.0.0</version> | ||
<title>ImageProcessor.Web</title> | ||
<authors>James South</authors> | ||
<owners>James South</owners> | ||
<projectUrl>http://imageprocessor.org</projectUrl> | ||
<iconUrl>http://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/master/build/content/imageprocessor.128.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description> | ||
ImageProcessor.Web adds a configurable HttpModule to your website which allows on-the-fly processing of image files. The module also comes with a file and browser based cache that can handle millions of images, increasing your processing output and saving precious server memory. | ||
|
||
Methods include: Resize, Rotate, Rounded Corners, Flip, Crop, Watermark, Filter, Saturation, Brightness, Contrast, Quality, Format, Vignette, Gaussian Blur, Gaussian Sharpen, and Transparency. | ||
Methods include: Resize, Rotate, Rounded Corners, Flip, Crop, Watermark, Filter, Saturation, Brightness, Contrast, Quality, Format, Vignette, Gaussian Blur, Gaussian Sharpen, and Transparency. | ||
|
||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
If you use ImageProcessor please get in touch via my twitter @james_m_south | ||
|
||
Feedback is always welcome</description> | ||
<summary>An extension to ImageProcessor that allows on-the-fly processing of image files in an ASP.NET website</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags>Image Imaging ASP Performance Processing HttpModule Cache Resize AutoRotate Rotate RoundedCorners Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg Bitmap Png WebP Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated EXIF</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\content\ImageProcessor.Web\web.config.transform" target="content\web.config.transform" /> | ||
<file src="..\_BuildOutput\ImageProcessor.Web\lib\net45\ImageProcessor.Web.dll" target="lib\net45\ImageProcessor.Web.dll" /> | ||
</files> | ||
Feedback is always welcome | ||
</description> | ||
<summary>An extension to ImageProcessor that allows on-the-fly processing of image files in an ASP.NET website</summary> | ||
<releaseNotes /> | ||
<copyright>James South</copyright> | ||
<language>en-GB</language> | ||
<tags> | ||
Image Imaging ASP Performance Processing HttpModule Cache Resize AutoRotate Rotate RoundedCorners | ||
Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg | ||
Bitmap Png WebP Tiff Fluent GDI Gaussian Blur Sharpen Tint Quantizer Animated EXIF Cair SeamCarving | ||
</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="ImageProcessor" version="2.0.0.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\content\ImageProcessor.Web\web.config.transform" target="content\web.config.transform" /> | ||
<file src="..\_BuildOutput\ImageProcessor.Web\lib\net45\ImageProcessor.Web.dll" target="lib\net45\ImageProcessor.Web.dll" /> | ||
</files> | ||
</package> |
Oops, something went wrong.