mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03: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"
|