I am getting this error "Cannot Find Volo.Abp.Commercial.SuiteTemplates.dll" when trying to generate a CRUD page from the commercial application - The application is a Module Template.
Please advise
8 Answer(s)
-
0
hi
Please upgrade ABP CLI and ABP Suite to the latest version(2.1.1) and try again.
-
1
I'm closing the issue. Reopen if your case continues
-
0
We have this issue in abp suite (2.2.1) and it affects us very much.
-
0
-
0
ABP Suite doesn't work on modules.
For now it only works on application templates. -
0
Sorry but i am trying for an application template. Not a module template.
-
1
The package Volo.Abp.Commercial.SuiteTemplate.dll came with the latest version.
If you have generated a project before v2.2.1, you need to reference this package to your *.Domain project.
Make sure Package Source is set to All in NuGet Manager.You can alternatively add this line to your *.Domain project
csproj
file.<PackageReference Include="Volo.Abp.Commercial.SuiteTemplate" Version="2.2.1" />
This is my
csproj
file content:netcoreapp3.1 Acme.MyProject
Also, you need to update your project to the latest from NuGet.
Update all Abp.*** and Volo.*** packages to the latest.You can update them from NuGet Manager in Visual Studio or alternatively you can use ABP Suite
if the package restore throws error that says cannot restore
Volo.Abp.Commercial.SuiteTemplates
you might need to login to abp platform via ABP CLI toool. -
0
Okay this fixed the problem, thanks.