diff --git a/README.md b/README.md index b97a20471..0287db86f 100644 --- a/README.md +++ b/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`. diff --git a/appveyor.yml b/appveyor.yml index 895790bf0..a2794e500 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -60,4 +60,4 @@ deploy: secure: fz0rUrt3B1HczUC1ZehwVsrFSWX9WZGDQoueDztLte9/+yQG+BBU7UrO+coE8lUf artifact: /.*\.nupkg/ on: - branch: V3 \ No newline at end of file + branch: Core \ No newline at end of file diff --git a/src/ImageProcessorCore/project.json b/src/ImageProcessorCore/project.json index b25051ae2..147ebd8a5 100644 --- a/src/ImageProcessorCore/project.json +++ b/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" ], diff --git a/tests/ImageProcessorCore.Tests/Properties/AssemblyInfo.cs b/tests/ImageProcessorCore.Tests/Properties/AssemblyInfo.cs index 5d613e692..f2a4729aa 100644 --- a/tests/ImageProcessorCore.Tests/Properties/AssemblyInfo.cs +++ b/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("")]