File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5050 run : |
5151 if (Test-Path ${{ env.DLL_PATH }}) {
5252 Write-Output "DLL found: ${{ env.DLL_PATH }}"
53- $version = (Get-Item ${{ env.DLL_PATH }}).VersionInfo.FileVersion
53+ $version = (Get-Item ${{ env.DLL_PATH }}).VersionInfo.ProductVersion
5454
5555 if ($version) {
5656 Write-Output "Extracted version : $version"
6868 if (![string]::IsNullOrEmpty("${{ env.LIBRARY_PATH }}")) {
6969 if (Test-Path ${{ env.LIBRARY_PATH }}) {
7070 Write-Output "Library DLL found : ${{ env.LIBRARY_PATH }}"
71- $libraryVersion = (Get-Item ${{ env.LIBRARY_PATH }}).VersionInfo.FileVersion
71+ $libraryVersion = (Get-Item ${{ env.LIBRARY_PATH }}).VersionInfo.ProductVersion
7272
7373 if ($libraryVersion) {
7474 Write-Output "Extracted library version : $libraryVersion"
@@ -190,4 +190,4 @@ jobs:
190190 upload_url : ${{ steps.create_release.outputs.upload_url }}
191191 asset_path : ./TLibrary/bin/Release/net48/NewLibraries.zip
192192 asset_name : Libraries.zip
193- asset_content_type : application/zip
193+ asset_content_type : application/zip
You can’t perform that action at this time.
0 commit comments