Browse Source

Introducing ImageProcessorCore

Former-commit-id: 21d803ad3d59dcee619faaf4af1e58aaa2dddd1f
Former-commit-id: 9e44a95f82682a2315b887cf02a901ba988e18c7
Former-commit-id: cec645c33711bdc64783882e8724981af2d0251e
pull/1/head
James Jackson-South 10 years ago
parent
commit
5697fc3653
  1. 6
      README.md
  2. 2
      appveyor.yml
  3. 5
      src/ImageProcessorCore/project.json
  4. 4
      tests/ImageProcessorCore.Tests/Properties/AssemblyInfo.cs

6
README.md

@ -1,10 +1,10 @@
# ImageProcessor
## This branch contains the new cross platform version ImageProcessorCore.
## This branch contains the new cross platform version: ImageProcessorCore.
This is a complete rewrite from the ground up to allow the processing of images without the use of `System.Drawing` using a cross-platform class library. It's still in early stages but progress has been pretty quick.
[![Build status](https://ci.appveyor.com/api/projects/status/8ypr7527dnao04yr/branch/V3?svg=true)](https://ci.appveyor.com/project/JamesSouth/imageprocessor/branch/V3)
[![Build status](https://ci.appveyor.com/api/projects/status/8ypr7527dnao04yr/branch/Core?svg=true)](https://ci.appveyor.com/project/JamesSouth/imageprocessor/branch/Core)
[![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)
###Why am I writing this?
@ -20,7 +20,7 @@ We already have a [MyGet package repository](https://www.myget.org/F/imageproces
### Manual build
If you prefer, you can compile ImageProcessor yourself (please do and help!), you'll need:
If you prefer, you can compile ImageProcessorCore yourself (please do and help!), you'll need:
- Visual Studio 2015 (or above)
- The [Windows 10 development tools](https://dev.windows.com/en-us/downloads) - Click `Get Visual Studio Community`.

2
appveyor.yml

@ -60,4 +60,4 @@ deploy:
secure: fz0rUrt3B1HczUC1ZehwVsrFSWX9WZGDQoueDztLte9/+yQG+BBU7UrO+coE8lUf
artifact: /.*\.nupkg/
on:
branch: V3
branch: Core

5
src/ImageProcessorCore/project.json

@ -1,6 +1,7 @@
{
"version": "3.0.0-*",
"description": "ImageProcessorCore",
"version": "1.0.0-*",
"title": "ImageProcessorCore",
"description": "A cross-platform library for processing of image files written in C#",
"authors": [
"James Jackson-South and contributors"
],

4
tests/ImageProcessorCore.Tests/Properties/AssemblyInfo.cs

@ -6,10 +6,10 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ImageProcessorCore.Tests")]
[assembly: AssemblyDescription("A library for on-the-fly processing of image files written in C#")]
[assembly: AssemblyDescription("A cross-platform library for processing of image files written in C#")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ImageProcessorCore")]
[assembly: AssemblyProduct("ImageProcessorCore.Tests")]
[assembly: AssemblyCopyright("Copyright © James Jackson-South and contributors.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Loading…
Cancel
Save