I have one VS Solution with multiple function Projects. If I run the solution build in VS, it all works well as it is going to push the bin & function.json in to respective project folder. However, when I run msbuild or dotnet.exe in command line and output into a common folder (for ex: msbuild MB.Azure.sln -property:outdir=\msbuildout
), I can see all the libraries going to bin folder but the function.json file is getting deleted for all projects except for the last one that's built in the build chain.
Is this expected behaviour? Is there any way that I can still keep all the function.JSON files? Or is it possible to manually generate the files instead of automatic system generated?
-Srikanth