forked from aloneguid/config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.ps1
87 lines (69 loc) · 2.07 KB
/
appveyor.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
$gv = $env:APPVEYOR_BUILD_VERSION
$bn = $env:APPVEYOR_BUILD_NUMBER
if($gv -eq $null)
{
$gv = "1.0.0"
}
$vt = @{
}
Write-Host "global version is $gv"
$Copyright = "Copyright (c) 2015-2018 by Ivan Gavryliuk"
$PackageIconUrl = "http://i.isolineltd.com/nuget/config.net.png"
$PackageProjectUrl = "https://github.com/aloneguid/config"
$RepositoryUrl = "https://github.com/aloneguid/config"
$Authors = "Ivan Gavryliuk (@aloneguid)"
$PackageLicenseUrl = "https://github.com/aloneguid/config/blob/master/LICENSE"
$RepositoryType = "GitHub"
$SlnPath = "src\Config.Net.sln"
function Update-ProjectVersion($File)
{
Write-Host "updating $File ..."
$v = $vt.($File.Name)
if($v -eq $null) { $v = $gv }
$xml = [xml](Get-Content $File.FullName)
if($xml.Project.PropertyGroup.Count -eq $null)
{
$pg = $xml.Project.PropertyGroup
}
else
{
$pg = $xml.Project.PropertyGroup[0]
}
$parts = $v -split "\."
$bv = $parts[2]
if($bv.Contains("-")) { $bv = $bv.Substring(0, $bv.IndexOf("-"))}
[string] $fv = "{0}.{1}.{2}.0" -f $parts[0], $parts[1], $bv
[string] $av = "{0}.0.0.0" -f $parts[0]
[string] $pv = $v
$pg.Version = $pv
$pg.FileVersion = $fv
$pg.AssemblyVersion = $av
Write-Host "$($File.Name) => fv: $fv, av: $av, pkg: $pv"
$pg.Copyright = $Copyright
$pg.PackageIconUrl = $PackageIconUrl
$pg.PackageProjectUrl = $PackageProjectUrl
$pg.RepositoryUrl = $RepositoryUrl
$pg.Authors = $Authors
$pg.PackageLicenseUrl = $PackageLicenseUrl
$pg.RepositoryType = $RepositoryType
$xml.Save($File.FullName)
}
function Exec($Command, [switch]$ContinueOnError)
{
Invoke-Expression $Command
if($LASTEXITCODE -ne 0)
{
Write-Error "command failed (error code: $LASTEXITCODE)"
if(-not $ContinueOnError.IsPresent)
{
exit 1
}
}
}
# Update versioning information
Get-ChildItem *.csproj -Recurse | Where-Object {-not(($_.Name -like "*test*") -or ($_.Name -like "*runner*"))} | % {
Update-ProjectVersion $_
}
# Restore packages
Exec "dotnet restore $SlnPath"
Write-Host "build succeeded."