mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
13 lines
397 B
PowerShell
13 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"
|