Hi,
I would like to create .inf file (for creating .cab file) using msbuild command line.
First I tried to rebuild the solution using VS IDE and it created .inf file which could be used to create .cab file (package for mobile device). Then I tried to create .inf file with msbuild with the following command:
msbuild solutionName.sln /p:platform="Windows Mobile 6 Professional SDK (ARMV4I)" /t:rebuild"
It successfully rebuilt the solution and all the projects but it didn't create the .inf file inside deployment project directory.
Does anyone know how to create the .inf file from command line?