mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
14 lines
461 B
PowerShell
14 lines
461 B
PowerShell
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string] $configuration,
|
|
[string] $platform = "iPhone"
|
|
)
|
|
|
|
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$iosPath = $($rootPath + "\src\iOS\iOS.csproj");
|
|
|
|
Write-Output "########################################"
|
|
Write-Output "##### Build $configuration Configuration for $platform Platform"
|
|
Write-Output "########################################"
|
|
|
|
msbuild "$($iosPath)" "/p:Platform=$platform" "/p:Configuration=$configuration"
|