1
maliming created
Support Team
Fullstack Developer
This error is related to NET 9 SDK.
You can use a specific SDK version in a folder to install the abp suite
.
> dotnet --list-sdks
8.0.401 [/usr/local/share/dotnet/sdk]
9.0.100-rc.2.24474.11 [/usr/local/share/dotnet/sdk]
> cd TestFolder
TestFolder > dotnet new globaljson --sdk-version 8.0.401
TestFolder > dotnet --version
8.0.401
TestFolder > abp suite
Update:
Please use latest official NET 9 SDK to solve this issue,
2 Answer(s)
-
0
when we install abp framework with the command
dotnet tool install -g Volo.Abp.Cli
we get errorTool 'volo.abp.cli' failed to update due to the following: The settings file in the tool's NuGet package is invalid: Settings file 'DotnetToolSettings.xml' was not found in the package. Tool 'volo.abp.cli' failed to install. Contact the tool author for assistance.
-
1
Settings file 'DotnetToolSettings.xml' was not found in the package
You can install the latest official NET 9 SDK to solve this issue.
https://dotnet.microsoft.com/en-us/download/dotnet/9.0