vcmohan
10th May 2021, 13:52
I am compiling on vc++ 2019 version all my dlls and was able to see them in the release folder. However now I see instead of the .dll, a .dll.Recipe file. It is about 1kb and contains xml
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ProjectOutputs>
<ProjectOutput>
<FullPath>C:\TransPlugins\bin_avsPlus\FQPlus\x64\Release\FQPlus.dll</FullPath>
</ProjectOutput>
</ProjectOutputs>
<ContentFiles />
<SatelliteDlls />
<NonRecipeFileRefs />
</Project>
I find that vdub is able to access the file through avs script. But when I try to insert this in the .7z, I see only the .dll.recipe file.
My linker output file correctly specifies as .dll file. How come this xml file is appearing? How to get the dll file? On line I could not get
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ProjectOutputs>
<ProjectOutput>
<FullPath>C:\TransPlugins\bin_avsPlus\FQPlus\x64\Release\FQPlus.dll</FullPath>
</ProjectOutput>
</ProjectOutputs>
<ContentFiles />
<SatelliteDlls />
<NonRecipeFileRefs />
</Project>
I find that vdub is able to access the file through avs script. But when I try to insert this in the .7z, I see only the .dll.recipe file.
My linker output file correctly specifies as .dll file. How come this xml file is appearing? How to get the dll file? On line I could not get