I have a product that I'm working on, Foo. It has currently roughly the following filesystem structure. It's composed of several logically-distinct modules. I want to package each of those modules so that I can make dependencies a bit more explicit.
I'd also like to continue being able to do a single checkout, though, and have my single solution, single build-script, etc available to me.
Something like how rspec does it; the rspec package depends on a set of sub-packages that can be individually maintained.
Edit: How best to:
- make the modules inter-dependent
- make the work-on-many-things-at-once-from-source-control-checkout experience work, in the sense of not duplicating things like build-automation, etc. I want to keep having a single solution so that ReSharper can find unused code throughout (this is a big legacy codebase), for example. ** So changes to a set of modules would require that I increment all of their versions at once, to correctly advance the dependencies.
.
/Foo.git
/module1
/src
/module1
/module1.specs (tests)
/module1.sln
/module1.wrapdesc
/version
/module2
/src
/module2
/module2.specs
/module2.sln
/module2.wrapdesc
/version
/Foo.sln
/Rakefile.rb (I'm using ruby/rake to build)
/Gemfile
/Gemfile.lock