We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c125dd commit 7bea401Copy full SHA for 7bea401
README.md
@@ -84,6 +84,15 @@ How to include the all `MediaInfo.dll` runtime native libraries in `.csproj`:
84
</ItemGroup>
85
```
86
87
+and remove the auto copying library:
88
+
89
+```xml
90
+<Target Name="ReduceReleasePackaging" AfterTargets="Build">
91
+ <!-- MediaInfoDLL will copy the MediaInfo.dll file according to the architecture, we do not use this usage so delete it manually -->
92
+ <Delete Files="$(OutputPath)\MediaInfo.dll" Condition="Exists('$(OutputPath)\MediaInfo.dll')" />
93
+</Target>
94
+```
95
96
## References
97
98
https://github.com/MediaArea/MediaInfoLib/blob/master/Source/MediaInfo/MediaInfo_Config.h
0 commit comments