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
message=$"Unable to find {projectName} in any of the paths: {string.Join(", ",notFound)} or in {rootDirectory.FullName} and its subfolders";
295
-
else
296
-
message=$"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. You can add an IFileLocator to the config if this is on purpose.";
297
-
298
-
thrownewFileNotFoundException(message);
269
+
thrownewNotSupportedException(
270
+
$"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");
299
271
}
300
272
elseif(projectFiles.Length>1)
301
273
{
302
-
thrownewInvalidOperationException(
274
+
thrownewNotSupportedException(
303
275
$"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