mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
27 lines
820 B
TypeScript
27 lines
820 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { DotnetVersionDatasource } from '../../datasource/dotnet-version';
|
|
import { NugetDatasource } from '../../datasource/nuget';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
export { bumpPackageVersion } from './update';
|
|
|
|
export const displayName = 'NuGet';
|
|
export const url = 'https://learn.microsoft.com/nuget';
|
|
export const categories: Category[] = ['dotnet'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'\\.(?:cs|fs|vb)proj$',
|
|
'\\.(?:props|targets)$',
|
|
'(^|/)dotnet-tools\\.json$',
|
|
'(^|/)global\\.json$',
|
|
],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
DockerDatasource.id,
|
|
DotnetVersionDatasource.id,
|
|
NugetDatasource.id,
|
|
];
|