在 appsettings.production.json 中,排除部分是什么?
in appsettings.production.json, what is the exclude section?
在 VS 2019 中,aspnet core 3.1,我创建了 appsettings.Productions.json。
为什么包含以下内容,这是什么意思?
"exclude": [
"**/bin",
"**/bower_components",
"**/jspm_packages",
"**/node_modules",
"**/obj",
"**/platforms"
]
Why did the contain the following, and what does it mean?
用于排除文件夹列表,让语言服务知道哪些文件可以安全忽略。
输出位置以及非项目文件夹,例如 node_modules
或 bin
,应添加到此设置中。
在 VS 2019 中,aspnet core 3.1,我创建了 appsettings.Productions.json。
为什么包含以下内容,这是什么意思?
"exclude": [
"**/bin",
"**/bower_components",
"**/jspm_packages",
"**/node_modules",
"**/obj",
"**/platforms"
]
Why did the contain the following, and what does it mean?
用于排除文件夹列表,让语言服务知道哪些文件可以安全忽略。
输出位置以及非项目文件夹,例如 node_modules
或 bin
,应添加到此设置中。