|
-
Oct 4th, 2006, 03:06 PM
#1
Thread Starter
Frenzied Member
[2005] Adding Documentation To Solution
I have a set of user requirements in the form of a Word document.
Should I just place this in the solution directory and add it to the solution with 'Add Existing Item' or is there a proper way to add documentation to your project?
-
Oct 4th, 2006, 03:10 PM
#2
Re: [2005] Adding Documentation To Solution
If you mean besides documenting the code, no VS doesn't provide much more
"I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
My Blog
-
Oct 4th, 2006, 05:46 PM
#3
Re: [2005] Adding Documentation To Solution
If the doco is for the solution then add it to the solution. If it's for a project then add it to the project. The advantage with adding it to a project is that you can set its Build Action property to Content, then when you create an installer for your app you just select a project output and add the Content files for your project. That means that each time you build your setup all files marked as Content will be compiled into it. If you add or remove Content files the setup will update automatically with each build without you having to manually add or remove individual files. If you add the doco to the solution then you don't get that and you'll have to specifically add that file to the Setup project.
Also, Word is not the ideal format to be using. Not everyone wil have Word installed, even if it's likely that most will either have it or a compatible application. It's better to use a more universal file format. CHM or RTF are good because all Windows systems can read them. PDF is also good as the reader is free and you can provide it on the CD with your app for those who don't already have it.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|