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