Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Nov 13, 2024
1 parent 7c3b3ef commit bd8d939
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 29 deletions.
60 changes: 33 additions & 27 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,5 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Release'",
"enum": [
"Debug",
"Release"
]
},
"GlobalVips": {
"type": "boolean",
"description": "Test with a globally installed libvips"
},
"Package": {
"type": "boolean",
"description": "Build and create NuGet packages"
},
"SkipTests": {
"type": "boolean",
"description": "Skip unit tests"
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
}
},
"definitions": {
"Host": {
"type": "string",
Expand Down Expand Up @@ -127,5 +101,37 @@
}
}
},
"$ref": "#/definitions/NukeBuild"
"allOf": [
{
"properties": {
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Release'",
"enum": [
"Debug",
"Release"
]
},
"GlobalVips": {
"type": "boolean",
"description": "Test with a globally installed libvips"
},
"Package": {
"type": "boolean",
"description": "Build and create NuGet packages"
},
"SkipTests": {
"type": "boolean",
"description": "Skip unit tests"
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
}
}
},
{
"$ref": "#/definitions/NukeBuild"
}
]
}
4 changes: 2 additions & 2 deletions build/NetVips.Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGet.CommandLine" Version="6.11.1">
<PackageReference Include="NuGet.CommandLine" Version="6.12.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Nuke.Common" Version="8.1.2" />
<PackageReference Include="Nuke.Common" Version="8.1.4" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
</ItemGroup>

Expand Down

0 comments on commit bd8d939

Please sign in to comment.