|
public class DotNetTestSettings : DotNetSettings |
Options:
--project <PROJECT_PATH> Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory.
--solution <SOLUTION_PATH> Defines the path of the solution file to run. If not specified, it defaults to the current directory.
Probably something like
public enum DotNetTestPathType
{
None, // default
Auto,
Project,
Solution
}
that on .NET 10 or greater prefixes --project or --solution based on DotNetTestPathType
|
builder.AppendQuoted(project); |
cake/src/Cake.Common/Tools/DotNet/Test/DotNetTestSettings.cs
Line 14 in af6ab79
Probably something like
that on .NET 10 or greater prefixes
--projector--solutionbased onDotNetTestPathTypecake/src/Cake.Common/Tools/DotNet/Test/DotNetTester.cs
Line 58 in af6ab79