Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Generate Documentation in Build #28

Merged
merged 9 commits into from
Oct 23, 2018
Prev Previous commit
Next Next commit
needs normal verbosity
  • Loading branch information
thefringeninja committed Oct 21, 2018
commit 3a8a67efad05327b0205e66d0d450228743f6ee6
4 changes: 2 additions & 2 deletions build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static void Main(string[] args)

Target(
GenerateDocumentation,
() => Run("dotnet", "build docs/docs.csproj"));
() => Run("dotnet", "build docs/docs.csproj --verbosity normal"));

Target(
Build,
Expand All @@ -46,7 +46,7 @@ public static void Main(string[] args)
DependsOn(Build),
() => Run(
"dotnet",
$"test src/SqlStreamStore.HAL.Tests -c Release -r ../../{ArtifactsDir} --no-build -l trx;LogFileName=SqlStreamStore.HAL.Tests.xml"));
$"test src/SqlStreamStore.HAL.Tests -c Release -r ../../{ArtifactsDir} --verbosity normal --no-build -l trx;LogFileName=SqlStreamStore.HAL.Tests.xml"));

Target(
Pack,
Expand Down