You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dotnet test -graph generally works for .NET SDK projects. But once the local MSBuildCache plugin is referenced, dotnet test -graph quits working.
Since -graph is typically added to Directory.Build.rsp as part of adopting a cache plugin for a repo, this will defeat even plain vanilla looking dotnet test.
Repro
md testrepro
cd testrepro
dotnet new xunit
dotnet test -graph # WORKS
dotnet add package Microsoft.MSBuildCache.Local --prerelease
dotnet test -graph # FAILS
The text was updated successfully, but these errors were encountered:
dotnet test -graph
generally works for .NET SDK projects. But once the local MSBuildCache plugin is referenced,dotnet test -graph
quits working.Since
-graph
is typically added toDirectory.Build.rsp
as part of adopting a cache plugin for a repo, this will defeat even plain vanilla lookingdotnet test
.Repro
The text was updated successfully, but these errors were encountered: