diff --git a/README.md b/README.md index 501682504..130b3d6f0 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,10 @@ We already have a [MyGet package repository](https://www.myget.org/gallery/image 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`. -- Dnvm and Dnx installed - -To install the last two please see the instructions at the [DotNet documentation](http://dotnet.readthedocs.org/en/latest/getting-started/installing-core-windows.html) +- The [.NET Core SDK Installer +(Preview 1)](https://www.microsoft.com/net/download) - Click `.NET Core SDK Installer +(Preview 1)` +- The [.NET Core Tooling Preview 1 for Visual Studio 2015](https://dev.windows.com/en-us/downloads) - Click `.NET Core Tooling Preview 1 for Visual Studio 2015`. To clone it locally click the "Clone in Windows" button above or run the following git commands. diff --git a/src/ImageProcessorCore/ImageProcessorCore.xproj b/src/ImageProcessorCore/ImageProcessorCore.xproj index ae0dd9c86..ffe5b1cea 100644 --- a/src/ImageProcessorCore/ImageProcessorCore.xproj +++ b/src/ImageProcessorCore/ImageProcessorCore.xproj @@ -8,8 +8,8 @@ 2aa31a1f-142c-43f4-8687-09abca4b3a26 ImageProcessorCore - ..\..\artifacts\obj\$(MSBuildProjectName) - ..\..\artifacts\bin\ + .\obj + .\bin\ v4.5.1 diff --git a/tests/ImageProcessorCore.Benchmarks/project.json b/tests/ImageProcessorCore.Benchmarks/project.json index 512f9e61e..15244e5ca 100644 --- a/tests/ImageProcessorCore.Benchmarks/project.json +++ b/tests/ImageProcessorCore.Benchmarks/project.json @@ -20,15 +20,15 @@ "ImageProcessorCore.Benchmarks": "ImageProcessorCore.Benchmarks" }, "frameworks": { - "net451": { - "dependencies": { - }, - "imports": [ - "dnx451" - ], - "frameworkAssemblies": { - "System.Drawing":"4.0.0.0" - } - } + "net451": { + "dependencies": { + }, + "imports": [ + "dnx451" + ], + "frameworkAssemblies": { + "System.Drawing": "4.0.0.0" + } + } } } diff --git a/tests/ImageProcessorCore.Tests/project.json b/tests/ImageProcessorCore.Tests/project.json index b0e45f56e..39d6d2654 100644 --- a/tests/ImageProcessorCore.Tests/project.json +++ b/tests/ImageProcessorCore.Tests/project.json @@ -19,17 +19,18 @@ "dotnet-test-xunit": "1.0.0-rc2-build10015" }, "frameworks": { - "netcoreapp1.1": { - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0-rc2-3002702" - } - }, - "imports": [ - "dnxcore50", - "portable-net45+win8" - ] + "netcoreapp1.1": { + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0-rc2-3002702" } - } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "testRunner": "xunit" } \ No newline at end of file