1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-18 02:31:15 +02:00
bitwarden-mobile/.github/scripts/ios/build.ps1

15 lines
461 B
PowerShell
Raw Normal View History

2020-06-09 16:47:09 +02:00
param (
[Parameter(Mandatory=$true)]
[string] $configuration,
[string] $platform = "iPhone"
)
$rootPath = $env:GITHUB_WORKSPACE;
2020-06-09 17:48:11 +02:00
$iosPath = $($rootPath + "/src/iOS/iOS.csproj");
2020-06-09 16:47:09 +02:00
Write-Output "########################################"
Write-Output "##### Build $configuration Configuration for $platform Platform"
Write-Output "########################################"
msbuild "$($iosPath)" "/p:Platform=$platform" "/p:Configuration=$configuration"