Skip to content

Commit f22df5f

Browse files
committed
Remove legacy check for outdated solution file format in ITestTaskSettings.
1 parent 733ba42 commit f22df5f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

source/CakeBuild/CreativeCoders.CakeBuild/Tasks/Templates/Settings/ITestTaskSettings.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ IEnumerable<FilePath> TestProjects
1010
{
1111
get
1212
{
13-
if (Context.SolutionFile.GetExtension()?.ToLower() != ".sln")
14-
{
15-
// Currently no support for new XML based slnx solution file format
16-
return [];
17-
}
13+
// if (Context.SolutionFile.GetExtension()?.ToLower() != ".sln")
14+
// {
15+
// // Currently no support for new XML based slnx solution file format
16+
// return [];
17+
// }
1818

1919
var solution = Context.ParseSolution(Context.SolutionFile);
2020

0 commit comments

Comments
 (0)