mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
589 B
20 lines
589 B
param(
|
|
[Parameter(Mandatory, Position = 0)]
|
|
[string]$version,
|
|
[Parameter(Mandatory = $false, Position = 1)]
|
|
[string]$targetFramework = 'ALL'
|
|
)
|
|
|
|
dotnet clean -c Release
|
|
|
|
$repositoryUrl = "https://github.com/$env:GITHUB_REPOSITORY"
|
|
if ($targetFramework -ne 'ALL') {
|
|
|
|
# Building for a specific framework.
|
|
dotnet build -c Release -f $targetFramework /p:packageversion=$version /p:RepositoryUrl=$repositoryUrl
|
|
}
|
|
else {
|
|
|
|
# Building for packing and publishing.
|
|
dotnet pack -c Release --output "$PSScriptRoot/artifacts" /p:packageversion=$version /p:RepositoryUrl=$repositoryUrl
|
|
}
|
|
|