The old CLI cannot be used to create a project of a specific version.
1.Install CLI
dotnet tool install -g Volo.Abp.Cli --version 5.3.5
2.Create a project
abp new Acme.BookStore -u blazor --separate-identity-server -ts "d://app-5.3.4.zip" --version 5.3.4 -dbms SqlServer -o "D:\test\456"
If the version is changed to 5.3.5, projects can be created.
However, the currently delivered version is 5.3.4, and upgrading to 5.3.5 would cause unnecessary complications.
Is there any way to resolve this issue?
4 Answer(s)
-
0
hi
We will check it. Our team is on holiday and may not be able to reply until Wednesday.
Thanks.
-
0
You can try
abp new Acme.BookStore -u blazor --separate-identity-server -ts "d://app-5.3.4.zip" --version 5.3.4 -dbms SqlServer -o "D:\test\456" --trust-version
-
0
hi liangshiwei
It can successfully create a project using the following methods:
1.Upgrade the CLI to the latest version.
2.Add the parameters trust-version and old.example:
abp new Acme.BookStore -u blazor --separate-identity-server -ts "d://templates" --version 5.3.4 -dbms SqlServer -o "D:\test\456" --trust-version --old -
0
okay