You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After restoring npm packages through the package.json file in an ASP.NET Core web project, when executing the 'abp install-libs' command in the root directory of the web project, the prompt 'No project found in the directory' appears.
My abp project is not a standard abp-cli-created project, but rather a self-built project based on abp modular conventions, which depends on some official abp modules and has gone through upgrades from abp 3.0 to 6.0 and then to 8.0.
Initially, there was a gulp.js file in the root directory of the web project, which I have now deleted.
Based on the documentation for client-side package copying in the newer versions, I have added an abp.resourcemapping.js file in the project root directory.
when running the 'abp install-libs' command, it prompts with an error that no project is found.
I know that there are actually project files in the path where the command is run, so I don't know where the problem lies. Do you have any suggestions?
The text was updated successfully, but these errors were encountered:
My abp project is not a standard abp-cli-created project, but rather a self-built project based on abp modular conventions, which depends on some official abp modules and has gone through upgrades from abp 3.0 to 6.0 and then to 8.0
Because your project is not a standard ABP template, you need to check your project
Thanks for the answer, after I debugged the code, I found that it was this code that filtered the problem
and when I removed the .git from the ExcludeDirectory collection, I was able to find the project.
I know what the problem is, my web project path goes like this:
This path just includes the . Git, so no project files are found,I think excluding the .git handling code can be optimized to prevent exceptions because the directory contains .git
After restoring npm packages through the package.json file in an ASP.NET Core web project, when executing the 'abp install-libs' command in the root directory of the web project, the prompt 'No project found in the directory' appears.
My abp project is not a standard abp-cli-created project, but rather a self-built project based on abp modular conventions, which depends on some official abp modules and has gone through upgrades from abp 3.0 to 6.0 and then to 8.0.
Initially, there was a gulp.js file in the root directory of the web project, which I have now deleted.
Based on the documentation for client-side package copying in the newer versions, I have added an abp.resourcemapping.js file in the project root directory.
when running the 'abp install-libs' command, it prompts with an error that no project is found.
I know that there are actually project files in the path where the command is run, so I don't know where the problem lies. Do you have any suggestions?
The text was updated successfully, but these errors were encountered: