-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.ps1
22 lines (19 loc) · 1005 Bytes
/
build.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
param (
[string]$targetFrameworks = "netcoreapp3.1"
)
Write-Host "Restoring packages..."
if($targetFrameworks -eq "netcoreapp3.1")
{
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_365" -targetFrameworks $targetFrameworks
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_9" -targetFrameworks $targetFrameworks
}
else
{
./build-configuration.ps1 -configuration "FAKE_XRM_EASY" -targetFrameworks $targetFrameworks
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_2013" -targetFrameworks $targetFrameworks
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_2015" -targetFrameworks $targetFrameworks
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_2016" -targetFrameworks $targetFrameworks
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_365" -targetFrameworks $targetFrameworks
./build-configuration.ps1 -configuration "FAKE_XRM_EASY_9" -targetFrameworks $targetFrameworks
}
Write-Host "Done building all configurations :) "