mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
905 B
31 lines
905 B
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "0.1.0",
|
|
"command": "dotnet",
|
|
"isShellCommand": true,
|
|
"args": [],
|
|
"tasks": [
|
|
{
|
|
"taskName": "build",
|
|
"args": [ "ImageSharp.sln" ],
|
|
"isBuildCommand": true,
|
|
"showOutput": "always",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"taskName": "build benchmark",
|
|
"suppressTaskName": true,
|
|
"args": [ "build", "tests/ImageSharp.Benchmarks/ImageSharp.Benchmarks.csproj", "-f", "netcoreapp2.0", "-c", "Release" ],
|
|
"showOutput": "always",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"taskName": "test",
|
|
"args": ["tests/ImageSharp.Tests/ImageSharp.Tests.csproj", "-c", "release", "-f", "netcoreapp2.0"],
|
|
"isTestCommand": true,
|
|
"showOutput": "always",
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
}
|