From 0c4ccab691ac8790d8682218a943e8ffacc8cf97 Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Thu, 10 Dec 2020 17:44:30 +0000 Subject: [PATCH] Don't specify configuration for dotnet build Since `dotnet test` below didn't specify the Release configuration, it used the default configuration (generally Debug). --- ci/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/dotnet.yml b/ci/dotnet.yml index 354d2dc..198096c 100644 --- a/ci/dotnet.yml +++ b/ci/dotnet.yml @@ -20,6 +20,6 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build --no-restore - name: Test run: dotnet test --no-restore --verbosity normal