Skip to content

Commit 85a1680

Browse files
committed
Update Build.ps1
1 parent 062a760 commit 85a1680

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ echo "build: Build version suffix is $buildSuffix"
2121
if($LASTEXITCODE -ne 0) { exit 1 }
2222

2323
if($suffix) {
24-
& dotnet pack src\Serilog --configuration Release --no-build --no-restore -o artifacts --version-suffix=$suffix
24+
& dotnet pack src\Serilog.Settings.Configuration --configuration Release --no-build --no-restore -o artifacts --version-suffix=$suffix
2525
} else {
26-
& dotnet pack src\Serilog --configuration Release --no-build --no-restore -o artifacts
26+
& dotnet pack src\Serilog.Settings.Configuration --configuration Release --no-build --no-restore -o artifacts
2727
}
2828

2929
if($LASTEXITCODE -ne 0) { exit 2 }
3030

3131
Write-Output "build: Testing"
3232

33-
& dotnet test test\Serilog.Tests --configuration Release --no-build --no-restore
33+
& dotnet test test\Serilog.Settings.Configuration.Tests --configuration Release --no-build --no-restore
3434

3535
if($LASTEXITCODE -ne 0) { exit 3 }

0 commit comments

Comments
 (0)