mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-07 09:20:04 +01:00
14 lines
397 B
PowerShell
14 lines
397 B
PowerShell
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string] $configuration
|
|
)
|
|
|
|
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$androidPath = $($rootPath + "\src\Android\Android.csproj");
|
|
|
|
Write-Output "########################################"
|
|
Write-Output "##### Build $configuration Configuration"
|
|
Write-Output "########################################"
|
|
|
|
msbuild "$($androidPath)" "/p:Configuration=$configuration"
|