forked from obfuscar/obfuscar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.ps1
58 lines (54 loc) · 1.71 KB
/
release.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
$msBuild = "msbuild"
try
{
& $msBuild /version
Write-Host "Likely on Linux/macOS."
}
catch
{
Write-Host "MSBuild doesn't exist. Use VSSetup instead."
Install-Module VSSetup -Scope CurrentUser -Force
$instance = Get-VSSetupInstance -All | Select-VSSetupInstance -Latest
$installDir = $instance.installationPath
$msBuild = $installDir + '\MSBuild\Current\Bin\MSBuild.exe'
if (!(Test-Path $msBuild))
{
$msBuild = $installDir + '\MSBuild\15.0\Bin\MSBuild.exe'
if (!(Test-Path $msBuild))
{
$instance = Get-VSSetupInstance -All -Prerelease | Select-VSSetupInstance -Latest
$installDir = $instance.installationPath
$msBuild = $installDir + '\MSBuild\Current\Bin\MSBuild.exe'
if (!(Test-Path $msBuild))
{
$msBuild = $installDir + '\MSBuild\15.0\Bin\MSBuild.exe'
if (!(Test-Path $msBuild))
{
Write-Host "MSBuild doesn't exist. Exit."
exit 1
}
else
{
Write-Host "Likely on Windows with VS2017 Preview."
}
}
else
{
Write-Host "Likely on Windows with VS2019 Preview."
}
}
else
{
Write-Host "Likely on Windows with VS2017."
}
}
else
{
Write-Host "Likely on Windows with VS2019."
}
}
Write-Host "MSBuild found. Compile the projects."
& $msBuild obfuscar.sln /p:Configuration=Release /t:restore
& $msBuild obfuscar.sln /p:Configuration=Release /t:clean
& $msBuild obfuscar.sln /p:Configuration=Release
Write-Host "Compilation finished."