Add solution default file nesting rules

This commit is contained in:
Brandon Thetford
2024-06-20 21:16:48 -07:00
parent 2ccf14e13d
commit 76d48f1fe8

37
.filenesting.json Normal file
View File

@@ -0,0 +1,37 @@
{
"help": "https://go.microsoft.com/fwlink/?linkid=866610",
"root": true,
"dependentFileProviders": {
"add": {
"addedExtension": {},
"pathSegment": {
"add": {
".*": [
".config",
".cs",
".json",
".resx"
]
}
},
"extensionToExtension": {
"add": {
".designer.cs": [
".resx"
],
".cs.d.ts": [
".cs"
]
}
},
"fileToFile": {
"add": {
"package-lock.json": [
"package.json"
]
}
}
}
}
}