mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
15 lines
377 B
TypeScript
15 lines
377 B
TypeScript
import { ProgrammingLanguage } from '../../constants';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const language = ProgrammingLanguage.NET;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'\\.(?:cs|fs|vb)proj$',
|
|
'\\.(?:props|targets)$',
|
|
'(^|\\/)dotnet-tools\\.json$',
|
|
'(^|\\/)global\\.json$',
|
|
],
|
|
};
|