I have a powershell file in which i have a variable named $CurrentReleaseNumber :
$CurrentReleaseNumber="4.5"
What i want to do is edit the value of this variable inside another powershell file. This second powershell file will update the value of this variable and the new value should now reflect in first powershell file. So after execution of second powershell file the first powershell file should look like :
$CurrentReleaseNumber="4.7"