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 491d0fc commit a1a6185Copy full SHA for a1a6185
.github/workflows/fast.yml
@@ -135,3 +135,11 @@ jobs:
135
if: matrix.os == 'windows-latest'
136
run: ${{github.workspace}}/.github/scripts/check_dll_flags.ps1 ${{github.workspace}}/build/src/proxy_lib/Release/umf_proxy.dll
137
shell: pwsh
138
+
139
+ # TODO: We could add some script to verify metadata of dll's (selected fields, perhaps)
140
+ # ref. https://superuser.com/questions/381276/what-are-some-nice-command-line-ways-to-inspect-dll-exe-details
141
+ - name: Print metadata of our dll's
142
+ if: matrix.os == 'windows-latest'
143
+ run: |
144
+ get-command ${{github.workspace}}/build/bin/Release/umf.dll | format-list
145
+ get-command ${{github.workspace}}/build/src/proxy_lib/Release/umf_proxy.dll | format-list
0 commit comments