Skip to content

Commit 8f8f1e1

Browse files
committed
Bump Cake.Tool from 1.0.0 to 1.1.0
1 parent 6a84f3d commit 8f8f1e1

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

Source/ApiTemplate/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Task("Test")
5959
project.ToString(),
6060
new DotNetCoreTestSettings()
6161
{
62+
Blame = true,
6263
Collectors = new string[] { "XPlat Code Coverage" },
6364
Configuration = configuration,
6465
Loggers = new string[]
@@ -69,7 +70,6 @@ Task("Test")
6970
NoBuild = true,
7071
NoRestore = true,
7172
ResultsDirectory = artefactsDirectory,
72-
ArgumentCustomization = x => x.Append("--blame"),
7373
});
7474
});
7575

Source/ApiTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

Source/GraphQLTemplate/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Task("Test")
5959
project.ToString(),
6060
new DotNetCoreTestSettings()
6161
{
62+
Blame = true,
6263
Collectors = new string[] { "XPlat Code Coverage" },
6364
Configuration = configuration,
6465
Loggers = new string[]
@@ -69,7 +70,6 @@ Task("Test")
6970
NoBuild = true,
7071
NoRestore = true,
7172
ResultsDirectory = artefactsDirectory,
72-
ArgumentCustomization = x => x.Append("--blame"),
7373
});
7474
});
7575

Source/GraphQLTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

Source/NuGetTemplate/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Task("Test")
4545
project.ToString(),
4646
new DotNetCoreTestSettings()
4747
{
48+
Blame = true,
4849
Collectors = new string[] { "XPlat Code Coverage" },
4950
Configuration = configuration,
5051
Loggers = new string[]
@@ -55,7 +56,6 @@ Task("Test")
5556
NoBuild = true,
5657
NoRestore = true,
5758
ResultsDirectory = artefactsDirectory,
58-
ArgumentCustomization = x => x.Append("--blame"),
5959
});
6060
});
6161

Source/NuGetTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

Source/OrleansTemplate/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Task("Test")
5959
project.ToString(),
6060
new DotNetCoreTestSettings()
6161
{
62+
Blame = true,
6263
Collectors = new string[] { "XPlat Code Coverage" },
6364
Configuration = configuration,
6465
Loggers = new string[]
@@ -69,7 +70,6 @@ Task("Test")
6970
NoBuild = true,
7071
NoRestore = true,
7172
ResultsDirectory = artefactsDirectory,
72-
ArgumentCustomization = x => x.Append("--blame"),
7373
});
7474
});
7575

Source/OrleansTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ Task("Test")
109109
project.ToString(),
110110
new DotNetCoreTestSettings()
111111
{
112+
Blame = true,
112113
Collectors = new string[] { "XPlat Code Coverage" },
113114
Configuration = configuration,
114115
Filter = string.Join("&", filters),
@@ -120,7 +121,6 @@ Task("Test")
120121
NoBuild = true,
121122
NoRestore = true,
122123
ResultsDirectory = artefactsDirectory,
123-
ArgumentCustomization = x => x.Append("--blame"),
124124
});
125125
});
126126

dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

0 commit comments

Comments
 (0)