File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed
PlsqlDeveloperUtPlsqlPlugin
PlsqlDeveloperUtPlsqlPlugin/Properties
utPLSQL.UI.Standalone/Properties Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 2828// Build Number
2929// Revision
3030//
31- // You can specify all the values or you can default the Build and Revision Numbers
32- // by using the '*' as shown below:
33- // [assembly: AssemblyVersion("1.0.*")]
3431[assembly: AssemblyVersion("1.2.3.0")]
3532[assembly: AssemblyFileVersion("1.2.3.0")]
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 2929// Build Number
3030// Revision
3131//
32- // You can specify all the values or you can default the Build and Revision Numbers
33- // by using the '*' as shown below:
34- // [assembly: AssemblyVersion("1.0.*")]
3532[assembly: AssemblyVersion("1.2.3.0")]
3633[assembly: AssemblyFileVersion("1.2.3.0")]
Original file line number Diff line number Diff line change 2929// Build Number
3030// Revision
3131//
32- // You can specify all the values or you can default the Build and Revision Numbers
33- // by using the '*' as shown below:
34- // [assembly: AssemblyVersion("1.0.*")]
3532[assembly: AssemblyVersion("1.2.3.0")]
3633[assembly: AssemblyFileVersion("1.2.3.0")]
You can’t perform that action at this time.
0 commit comments