A .dsw file contains a list of projects which are "related". Each project, represented as a .dsp file which contains the locations of the source code and the compiler flags, is compiled as a library or executable or whatever. The .dsw file is nice in that it contains a list of dependancies each project has (but not so nice in that it lists them by project name instead of .dsp file)

That said, here are the relevant parts of a typical project listing in a .dsw file and the regex's I was using:

Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!

###############################################################################

Project: "Utilities"=.\Util.dsp - Package Owner=<4>

Package=<5>
{{{
    begin source code control
    "$/Shared/UTIL", QGFAAAAA
    .
    end source code control
}}}

Package=<4>
{{{
    Begin Project Dependency
    Project_Dep_Name Win32Wrapper
    End Project Dependency
    Begin Project Dependency
    Project_Dep_Name PersistantData
    End Project Dependency
}}}

###############################################################################


In reply to RE: RE: Data Structs by Adam
in thread Data Structs by Adam

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.