Browse Source

Project build + testrunner [skip ci]

Former-commit-id: cd4cf4e1c23f337e6dec1c4bdd8881fbd17f8420
Former-commit-id: 0ae0792e140b9d09ca84b73001f28dae862e8b7c
Former-commit-id: b99728903470f7b7188452f1826ccf11071df399
af/merge-core
James Jackson-South 10 years ago
parent
commit
b4b5efea03
  1. 8
      README.md
  2. 4
      src/ImageProcessorCore/ImageProcessorCore.xproj
  3. 20
      tests/ImageProcessorCore.Benchmarks/project.json
  4. 25
      tests/ImageProcessorCore.Tests/project.json

8
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: If you prefer, you can compile ImageProcessorCore yourself (please do and help!), you'll need:
- Visual Studio 2015 (or above) - Visual Studio 2015 (or above)
- The [Windows 10 development tools](https://dev.windows.com/en-us/downloads) - Click `Get Visual Studio Community`. - The [.NET Core SDK Installer
- Dnvm and Dnx installed (Preview 1)](https://www.microsoft.com/net/download) - Click `.NET Core SDK Installer
(Preview 1)`
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 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. To clone it locally click the "Clone in Windows" button above or run the following git commands.

4
src/ImageProcessorCore/ImageProcessorCore.xproj

@ -8,8 +8,8 @@
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<ProjectGuid>2aa31a1f-142c-43f4-8687-09abca4b3a26</ProjectGuid> <ProjectGuid>2aa31a1f-142c-43f4-8687-09abca4b3a26</ProjectGuid>
<RootNamespace>ImageProcessorCore</RootNamespace> <RootNamespace>ImageProcessorCore</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> <BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\</OutputPath> <OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>

20
tests/ImageProcessorCore.Benchmarks/project.json

@ -20,15 +20,15 @@
"ImageProcessorCore.Benchmarks": "ImageProcessorCore.Benchmarks" "ImageProcessorCore.Benchmarks": "ImageProcessorCore.Benchmarks"
}, },
"frameworks": { "frameworks": {
"net451": { "net451": {
"dependencies": { "dependencies": {
}, },
"imports": [ "imports": [
"dnx451" "dnx451"
], ],
"frameworkAssemblies": { "frameworkAssemblies": {
"System.Drawing":"4.0.0.0" "System.Drawing": "4.0.0.0"
} }
} }
} }
} }

25
tests/ImageProcessorCore.Tests/project.json

@ -19,17 +19,18 @@
"dotnet-test-xunit": "1.0.0-rc2-build10015" "dotnet-test-xunit": "1.0.0-rc2-build10015"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.1": { "netcoreapp1.1": {
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"type": "platform", "type": "platform",
"version": "1.0.0-rc2-3002702" "version": "1.0.0-rc2-3002702"
}
},
"imports": [
"dnxcore50",
"portable-net45+win8"
]
} }
} },
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
},
"testRunner": "xunit"
} }
Loading…
Cancel
Save