Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
Remove the minor version from assembly versions (in order to get less…
Browse files Browse the repository at this point in the history
… problems with wrong versions being referenced)
  • Loading branch information
erik-kallen committed Jul 29, 2013
1 parent 661cdfb commit 47d1aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/default.ps1
Expand Up @@ -211,7 +211,7 @@ Task Determine-Version {
Function Generate-VersionFile($Path, $Version) {
$Version = Get-DotNetVersion -RawVersion $Version
@"
[assembly: System.Reflection.AssemblyVersion("$($Version.Major).$($Version.Minor).0.0")]
[assembly: System.Reflection.AssemblyVersion("$($Version.Major).0.0.0")]
[assembly: System.Reflection.AssemblyFileVersion("$Version")]
"@ | Out-File $Path -Encoding "UTF8"
}
Expand Down

0 comments on commit 47d1aac

Please sign in to comment.