Horje
increment version powershell Code Example
increment version powershell
$manifest = Import-PowerShellDataFile .\BeardAnalysis.psd1 
[version]$version = $Manifest.ModuleVersion
# Add one to the build of the version number
[version]$NewVersion = "{0}.{1}.{2}" -f $Version.Major, $Version.Minor, ($Version.Build + 1) 
# Update the manifest file
Update-ModuleManifest -Path .\BeardAnalysis.psd1 -ModuleVersion $NewVersion




Shell

Related
shell linux refresh log output Code Example shell linux refresh log output Code Example
bash user input yes no Code Example bash user input yes no Code Example
flasky fake Code Example flasky fake Code Example
git diff no context Code Example git diff no context Code Example
break a symbolic link in linux Code Example break a symbolic link in linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10