Results 1 to 3 of 3

Thread: [2005] Adding Documentation To Solution

  1. #1

    Thread Starter
    Frenzied Member agmorgan's Avatar
    Join Date
    Dec 2000
    Location
    Lurking
    Posts
    1,383

    [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?

  2. #2
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    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

  3. #3
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    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.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width