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
No matter what I tried, I could not get extent.exe to output anything other than "Nothing to do." When debugging, I discovered that File.GetAttributes was returning more flags than just Directory. Using HasFlag on Program.cs line 55 fixed it:
if (!string.IsNullOrEmpty(TestRunnerResultsDirectory) &&
File.GetAttributes(TestRunnerResultsDirectory).HasFlag(FileAttributes.Directory) &&
Parser.Equals(TestFramework.NUnit))
The text was updated successfully, but these errors were encountered:
gmattinson
pushed a commit
to gmattinson/extentreports-dotnet-cli
that referenced
this issue
May 21, 2019
No matter what I tried, I could not get extent.exe to output anything other than "Nothing to do." When debugging, I discovered that File.GetAttributes was returning more flags than just Directory. Using HasFlag on Program.cs line 55 fixed it:
The text was updated successfully, but these errors were encountered: