Merge pull request #1922 from Mailaender/patch-2

Added support for Mono .dll.config XML files
This commit is contained in:
Arfon Smith
2015-01-02 11:10:46 -06:00
2 changed files with 7 additions and 0 deletions

View File

@@ -3106,6 +3106,7 @@ XML:
- .dita
- .ditamap
- .ditaval
- .dll.config
- .filters
- .fsproj
- .glade

View File

@@ -0,0 +1,6 @@
<configuration>
<dllmap dll="libsomething">
<dllentry dll="libdifferent.so" name="somefunction" target="differentfunction" />
<dllentry os="solaris,freebsd" dll="libanother.so" name="somefunction" target="differentfunction" />
</dllmap>
</configuration>