Forked from pietergheysens/Update-AssemblyInfoVersionFiles.ps1
Created
May 24, 2016 12:55
-
-
Save lekodeveloperweb/7725435c653f179cc1ad7d78ca08ec35 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Update-AssemblyInfoVersionFiles | |
{ | |
Param | |
( | |
[Parameter(Mandatory=$true)] | |
[string]$productVersion | |
) | |
$buildNumber = $env:BUILD_BUILDNUMBER | |
if ($buildNumber -eq $null) | |
{ | |
$buildIncrementalNumber = 0 | |
} | |
else | |
{ | |
$splitted = $buildNumber.Split('.') | |
$buildIncrementalNumber = $splitted[$splitted.Length - 1] | |
} | |
$SrcPath = $env:BUILD_SOURCESDIRECTORY | |
Write-Verbose "Executing Update-AssemblyInfoVersionFiles in path $SrcPath for product version Version $productVersion" -Verbose | |
$AllVersionFiles = Get-ChildItem $SrcPath AssemblyInfo.cs -recurse | |
#calculation Julian Date | |
$year = Get-Date -format yy | |
$julianYear = $year.Substring(0) | |
$dayOfYear = (Get-Date).DayofYear | |
$julianDate = $julianYear + "{0:D3}" -f $dayOfYear | |
Write-Verbose "Julian Date: $julianDate" -Verbose | |
#split product version in SemVer language | |
$versions = $productVersion.Split('.') | |
$major = $versions[0] | |
$minor = $versions[1] | |
$patch = $versions[2] | |
$assemblyVersion = $productVersion | |
$assemblyFileVersion = "$major.$minor.$julianDate.$buildIncrementalNumber" | |
$assemblyInformationalVersion = $productVersion | |
Write-Verbose "Transformed Assembly Version is $assemblyVersion" -Verbose | |
Write-Verbose "Transformed Assembly File Version is $assemblyFileVersion" -Verbose | |
Write-Verbose "Transformed Assembly Informational Version is $assemblyInformationalVersion" -Verbose | |
foreach ($file in $AllVersionFiles) | |
{ | |
#version replacements | |
(Get-Content $file.FullName) | | |
%{$_ -replace 'AssemblyDescription\(""\)', "AssemblyDescription(""assembly built by TFS Build $buildNumber"")" } | | |
%{$_ -replace 'AssemblyVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', "AssemblyVersion(""$assemblyVersion"")" } | | |
%{$_ -replace 'AssemblyFileVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', "AssemblyFileVersion(""$assemblyFileVersion"")" } | | |
%{$_ -replace 'AssemblyInformationalVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', "AssemblyInformationalVersion(""$assemblyInformationalVersion"")" } | | |
Set-Content $file.FullName -Force | |
} | |
return $assemblyFileVersion | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment