From 151f05cd7430ee79e3c003b9557dba8e5e46e85b Mon Sep 17 00:00:00 2001 From: Nick Craver Date: Sat, 16 Apr 2016 23:00:47 -0400 Subject: [PATCH] PowerShell build updates: include .Contrib --- build.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.ps1 b/build.ps1 index b5eb9c79d..4db74d17b 100644 --- a/build.ps1 +++ b/build.ps1 @@ -31,12 +31,14 @@ foreach { # Restore packages and build product & dotnet restore "Dapper" +& dotnet restore "Dapper.Contrib" if ($LASTEXITCODE -ne 0) { throw "dotnet restore failed with exit code $LASTEXITCODE" } & dotnet pack "Dapper" --configuration Release --output "artifacts\packages" +& dotnet pack "Dapper.Contrib" --configuration Release --output "artifacts\packages" #restore, compile, and run tests & dotnet restore "Dapper.Tests" -f "artifacts\packages"