Github 存储库的 Sonarcloud 审核失败
Sonarcloud review for Github repository failed
我正在为 https://github.com/fatihyildirim1o/aspnet-starter-kit 使用 sonarcloud,但由于以下错误而无法正常工作。
enter image description here
我哪里做错了?
命令 dotnet build
失败并显示此错误消息(问题中捕获的第 26 行):
MSBUILD : error MSB1011 : Specify wich project or solution file to use because this folder contains more than one project or solution file
没有构建,SonarQube 无法分析。
在CI任务中,您需要精确的csproj或sln。如果您需要构建和分析多个 project/solution,则需要多个 dotnet build
指令。
在你的情况下,你可以:
dotnet build "onion-architecture.sln"
我正在为 https://github.com/fatihyildirim1o/aspnet-starter-kit 使用 sonarcloud,但由于以下错误而无法正常工作。
enter image description here
我哪里做错了?
命令 dotnet build
失败并显示此错误消息(问题中捕获的第 26 行):
MSBUILD : error MSB1011 : Specify wich project or solution file to use because this folder contains more than one project or solution file
没有构建,SonarQube 无法分析。
在CI任务中,您需要精确的csproj或sln。如果您需要构建和分析多个 project/solution,则需要多个 dotnet build
指令。
在你的情况下,你可以:
dotnet build "onion-architecture.sln"