Hello,
Here are the steps I take to create a package shipped to the end users:
- Use visual studio 2005 Build the project (which is library DLL written in C#), both in debug and release mode.
- I run doxygen and create documentation
- I create a folder structure where I put my dll documentation and some release notes
- zip it
- ship it
the directory tree structure looks like this:
--NetApi:
--Api
--vs2005
--relesae
--dll
--debug
--dll
--documentation
--htmls files generated by doxygen
--ReleaseNotes.html
--Examples
I am thinking of rolling out a script to automate that. But before I do that, I would like to find out the common practices of packaging library api type of project, particularly structure, and tools used. References and examples are highly appreciated
Thanks