Skip to content

Commit

Permalink
Merge pull request #64 from ejball/dotnet-test-verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
ejball authored Jun 4, 2024
2 parents 2850955 + d653b1d commit 5b41db9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>

<PropertyGroup>
<VersionPrefix>5.21.0</VersionPrefix>
<PackageValidationBaselineVersion>5.19.1</PackageValidationBaselineVersion>
<VersionPrefix>5.21.1</VersionPrefix>
<PackageValidationBaselineVersion>5.21.0</PackageValidationBaselineVersion>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 5.21.1

* Send verbosity argument to `dotnet test`.

## 5.21.0

* Add `BuildApp.CommandLineParsed` to allow initialization based on arguments.
Expand Down
3 changes: 3 additions & 0 deletions src/Faithlife.Build/DotNetBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,8 @@ public static void RunTests(this DotNetBuildSettings settings, string? path)
[
"test",
Path.GetFileName(path),
settings.GetVerbosityArg(),
settings.GetMaxCpuCountArg(),

This comment has been minimized.

Copy link
@ddunkin

ddunkin Jun 6, 2024

Member

This doesn't work here. #65

"--",
"RunConfiguration.TreatNoTestsAsError=true",
],
Expand All @@ -1004,6 +1006,7 @@ public static void RunTests(this DotNetBuildSettings settings, string? path)
settings.GetPlatformArg(),
settings.GetBuildNumberArg(),
"--no-build",
settings.GetVerbosityArg(),
settings.GetMaxCpuCountArg(),
"--",
"RunConfiguration.TreatNoTestsAsError=true",
Expand Down

0 comments on commit 5b41db9

Please sign in to comment.