Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d1463e commit 206929fCopy full SHA for 206929f
PlsqlDeveloperUtPlsqlPlugin/SetAssemblyVersion.ps1
@@ -1,8 +1,6 @@
1
param([string]$NewVersion)
2
3
-Get-ChildItem -Include assemblyinfo.cs, assemblyinfo.vb -Recurse |
4
- ForEach-Object {
5
- $_.IsReadOnly = $false
6
- (Get-Content -Path $_) -replace '(?<=Assembly(?:File)?Version\(")[^"]*(?="\))', $NewVersion |
7
- Set-Content -Path $_
8
- }
+Get-ChildItem -Include AssemblyInfo.cs -Recurse | ForEach-Object {
+ $_.IsReadOnly = $false
+ (Get-Content -Path $_) -replace '(?<=Assembly(?:File)?Version\(")[^"]*(?="\))', $NewVersion |Set-Content -Path $_
+}
0 commit comments