Skip to content
This repository was archived by the owner on Aug 23, 2019. It is now read-only.

Commit 055f0e6

Browse files
committed
Fix tests not running in Release
1 parent f44b7f5 commit 055f0e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
2-
nuget_version: '0.11.0-rc1'
2+
nuget_version: '0.11.0-rc2'
33
nuget_prerelease: true
4-
assembly_version: '0.9.0.0'
4+
assembly_version: '0.11.0.0'
55

66
deploy:
77
- provider: GitHub

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Write-Host "Running tests..."
5757

5858
[bool] $testsFailed = $false
5959
$tests | ForEach {
60-
Invoke-Expression "dotnet test $($_.FullName)"
60+
Invoke-Expression "dotnet test $($_.FullName) -c ${Configuration}"
6161

6262
if (!$testsFailed) {
6363
$testsFailed = $LASTEXITCODE -and $LASTEXITCODE -ne 0

0 commit comments

Comments
 (0)