Skip to content

Instantly share code, notes, and snippets.

View khorezm0's full-sized avatar
🎯
Focusing

Akmal Kamalov khorezm0

🎯
Focusing
View GitHub Profile
@rosberglinhares
rosberglinhares / ChangeAssemblyVersion.ps1
Created May 12, 2016 03:38
Powershell script to change assembly and file version
Param (
[Parameter(Mandatory=$true)]
[string[]] $AssemblyInfoFilesPath,
[Parameter(Mandatory=$true)]
[Version] $Version
)
$ErrorActionPreference = 'Stop' # Stops executing on error instead of silent continue.
Set-StrictMode -Version Latest # Enforces coding rules in expressions, scripts, and script blocks. Uninitialized variables are not permitted.