Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"rollForward": false
},
"nuke.globaltool": {
"version": "8.1.3",
"version": "8.1.4",
"commands": ["nuke"],
"rollForward": false
},
Expand Down
66 changes: 36 additions & 30 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,5 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"Artifacts": {
"type": "string",
"description": "The directory where artifacts are to be dropped"
},
"Configuration": {
"type": "string",
"description": "Configuration to build",
"enum": [
"Debug",
"Release"
]
},
"Coverage": {
"type": "string",
"description": "The directory where coverage artifacts are to be dropped"
},
"lint-files": {
"type": "array",
"description": "The files to lint, if not given lints all files",
"items": {
"type": "string"
}
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
}
},
"definitions": {
"Host": {
"type": "string",
Expand Down Expand Up @@ -154,5 +125,40 @@
}
}
},
"$ref": "#/definitions/NukeBuild"
"allOf": [
{
"properties": {
"Artifacts": {
"type": "string",
"description": "The directory where artifacts are to be dropped"
},
"Configuration": {
"type": "string",
"description": "Configuration to build",
"enum": [
"Debug",
"Release"
]
},
"Coverage": {
"type": "string",
"description": "The directory where coverage artifacts are to be dropped"
},
"lint-files": {
"type": "array",
"description": "The files to lint, if not given lints all files",
"items": {
"type": "string"
}
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
}
}
},
{
"$ref": "#/definitions/NukeBuild"
}
]
}
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageVersion Include="Polyfill" Version="7.2.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4" />
<PackageVersion Include="GitVersion.Tool" Version="6.0.4" />
<PackageVersion Include="Nuke.Common" Version="8.1.3" />
<PackageVersion Include="Nuke.Common" Version="8.1.4" />
<PackageVersion Include="ReportGenerator" Version="5.3.11" />
<PackageVersion Include="Rocket.Surgery.Nuke" Version="2.8.113" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.4.0" />
Expand Down