mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
12ac34bfa6
Co-authored-by: Rhys Arkins <rhys@arkins.net>
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
import { LANGUAGE_DOT_NET } from '../../constants/languages';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const language = LANGUAGE_DOT_NET;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'\\.(?:cs|fs|vb)proj$',
|
|
'\\.(?:props|targets)$',
|
|
'\\.config\\/dotnet-tools\\.json$',
|
|
],
|
|
};
|