mirror of https://github.com/renovatebot/renovate
26 lines
728 B
TypeScript
26 lines
728 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 defaultConfig = {
|
|
fileMatch: [
|
|
'\\.(?:cs|fs|vb)proj$',
|
|
'\\.(?:props|targets)$',
|
|
'(^|/)dotnet-tools\\.json$',
|
|
'(^|/)global\\.json$',
|
|
],
|
|
};
|
|
|
|
export const categories: Category[] = ['dotnet'];
|
|
|
|
export const supportedDatasources = [
|
|
DockerDatasource.id,
|
|
DotnetVersionDatasource.id,
|
|
NugetDatasource.id,
|
|
];
|