Log in

View Full Version : Help in Compiling on VC++ 2019 version


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

patul
11th May 2021, 03:03
Hi there vcmohan,

I don't know if this (https://stackoverflow.com/questions/63881701/visual-studio-2019-set-output-directory-for-tlog-and-dll-recipe-file) will help you, but I think it is worth to try.

On other note, please stay safe and healthy, as we heard from the news what is happening in India. Best of luck.

vcmohan
11th May 2021, 12:45
Thanks. Yes its a bad situation.
I accidentally solved problem. I was compiling on x64 platform when the problem cropped up. I changed to x86 (32 bit) platform and compiled. That corresponding release folder had the dll. Then I reverted back to x64 and compiled. Now I see the dll in the x64/release/ .