gpt4 book ai didi

c# - asp.net core 从构建中排除文件

转载 作者:行者123 更新时间:2023-11-30 14:25:00 25 4
gpt4 key购买 nike

我正在尝试将 Protractor 添加到我的 asp.net-core 应用程序中。

我通过 npm 添加了它,它安装了包含文件 Page.aspx.cs 的 selenium-webdriver。这导致构建错误,但我的项目甚至不需要编译它。

所以我尝试使用 project.json 排除 node_modules

"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true,
"compile": {
"excludeFiles": "node_modules"
}
},

给出路径中的非法字符:

 "excludeFiles": ["node_modules"]

这似乎与 _ 字符有关,但我不明白为什么这会成为问题。

谢谢

最佳答案

我设法使用 exclude 而不是 excludeFiles

"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true,
"compile": {
"exclude": ["node_modules"]
}
},

关于c# - asp.net core 从构建中排除文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39929208/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com