1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:33:20 +08:00

Reduce the verbosity of the Restore.

This commit is contained in:
miterosan 2018-09-16 16:25:40 +02:00
parent 03ff695a67
commit 0491fd581a

View File

@ -43,7 +43,9 @@ Task("InspectCode")
.Does(() => { .Does(() => {
var nVikaToolPath = GetFiles("./tools/NVika.MSBuild.*/tools/NVika.exe").First(); var nVikaToolPath = GetFiles("./tools/NVika.MSBuild.*/tools/NVika.exe").First();
DotNetCoreRestore(osuSolution.FullPath); DotNetCoreRestore(osuSolution.FullPath, new DotNetCoreRestoreSettings {
Verbosity = DotNetCoreVerbosity.Quiet
});
InspectCode(osuSolution, new InspectCodeSettings { InspectCode(osuSolution, new InspectCodeSettings {
CachesHome = "inspectcode", CachesHome = "inspectcode",