0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-13 16:11:49 +00:00
renovatebot_renovate/lib/modules/manager/nuget/readme.md
Rhys Arkins 58e448281d
feat(nuget): extract full ranges (#35343)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2025-04-23 10:12:34 +00:00

41 lines
1.1 KiB
Markdown

Use [`packageRules`](../../../configuration-options.md#packagerules) to control the behavior of the NuGet package manager.
The NuGet package manager supports these SDK-style files and formats:
- `.csproj`
- `.fsproj`
- `.vbproj`
- `.props`
- `.targets`
- `global.json`
- `dotnet-tools.json`
.NET Core projects are supported by default.
For Renovate to work with .NET Framework projects, you need to update these files so they match the new SDK-style format:
- `.csproj`
- `.fsproj`
- `.vbproj`
- `.props`
- `.targets`
### Disabling updates for pinned versions
In Nuget, when you use versions like `Version="1.2.3"` then it means "1.2.3 or greater, up to v2"
When you use versions like `Version="[1.2.3]"` then it means "exactly 1.2.3".
If you would like Renovate to disable updating of exact versions (warning: you might end up years out of date and not realize it) then here is an example configuration to achieve that:
```json
{
"packageRules": [
{
"description": "Skip pinned versions",
"matchManagers": ["nuget"],
"matchCurrentValue": "/^\\[[^,]+\\]$/",
"enabled": false
}
]
}
```