Skip to content

Commit

Permalink
Add Abstractions package to build
Browse files Browse the repository at this point in the history
  • Loading branch information
schotime committed Jan 2, 2024
1 parent 2309ab2 commit 304766d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Properties {
$jsonnet = "$build_dir\src\NPoco.JsonNet"
$sqlserver = "$build_dir\src\NPoco.SqlServer"
$sqlserversysdata = "$build_dir\src\NPoco.SqlServer.SystemData"
$abstractions = "$build_dir\src\NPoco.Abstractions"
}

FormatTaskName (("-" * 25) + "[{0}]" + ("-" * 25))
Expand All @@ -31,6 +32,8 @@ Task Build -depends Clean {
Exec { dotnet pack --configuration release --output $build_artifacts_dir $suffix }
Set-Location "$sqlserversysdata"
Exec { dotnet pack --configuration release --output $build_artifacts_dir $suffix }
Set-Location "$abstractions"
Exec { dotnet pack --configuration release --output $build_artifacts_dir $suffix }
}

Task Clean {
Expand Down

0 comments on commit 304766d

Please sign in to comment.