Skip to content

Commit

Permalink
Update publish scripts and version bump to 4.11.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Mutex666 committed Jan 13, 2024
1 parent a84cd38 commit aba4e4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DCSFlightpanels/DCSFlightpanels.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</Authors>
<PackageId>DCSFlightpanels (DCSFP)</PackageId>
<Version>1.0.0</Version>
<AssemblyVersion>4.11.5</AssemblyVersion>
<AssemblyVersion>4.11.6</AssemblyVersion>
<FileVersion>
</FileVersion>
<ApplicationIcon>Images\UI\flightpanels02_8Rc_icon.ico</ApplicationIcon>
Expand Down
4 changes: 4 additions & 0 deletions Source/PublishReleaseCTRLREF.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ if ( 0 -ne $buildLastExitCode ) {
exit
}

#remove 'EmptyFiles' Folder
Write-Host "Removing EmptyFiles folder" -foregroundcolor "Green"
Remove-Item $publishPath\EmptyFiles -Force -Recurse -ErrorAction SilentlyContinue

#Getting file info & remove revision from file_version
Write-Host "Getting file info" -foregroundcolor "Green"
$file_version = (Get-Command $publishPath\ctrlref.exe).FileVersionInfo.FileVersion
Expand Down
4 changes: 4 additions & 0 deletions Source/PublishReleaseDCSFP.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@ Write-Host "Including SamplePanelEventPlugin.dll(s)" -foregroundcolor "Green"
Copy-Item -Path $publishPath\SamplePanelEventPlugin1.dll -Destination $publishPath\Extensions\SamplePanelEventPlugin1.dll
Copy-Item -Path $publishPath\SamplePanelEventPlugin2.dll -Destination $publishPath\Extensions\SamplePanelEventPlugin2.dll

#remove 'EmptyFiles' Folder
Write-Host "Removing EmptyFiles folder" -foregroundcolor "Green"
Remove-Item $publishPath\EmptyFiles -Force -Recurse -ErrorAction SilentlyContinue

#Getting file info & remove revision from file_version
Write-Host "Getting file info" -foregroundcolor "Green"
$file_version = (Get-Command $publishPath\dcsfp.exe).FileVersionInfo.FileVersion
Expand Down

0 comments on commit aba4e4e

Please sign in to comment.