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
$"Unable to find {projectName} in {rootDirectory.FullName} and its subfolders. Most probably the name of output exe is different than the name of the .(c/f)sproj");
168
167
}
169
-
returnprojectFile;
168
+
elseif(projectFiles.Length>1)
169
+
{
170
+
thrownewNotSupportedException(
171
+
$"Found more than one matching project file for {projectName} in {rootDirectory.FullName} and its subfolders: {string.Join(",",projectFiles.Select(pf =>$"'{pf.FullName}'"))}. Benchmark project names needs to be unique.");
0 commit comments