Do you have a correctly structured common code assembly?

Updated by Brady Stroud [SSW] 1 year ago. See history

123

Your common code assembly should be divided into the following sections:

  • Common (e.g. SSW.Framework.Common)
    • Code which is not UI specific
    • Example: Code to convert a date into different formats
  • CommonWindows (e.g. SSW.Framework.WindowsUI)
    • Example: Base forms which are the same for all products, wizard frameworks
  • CommonWeb (e.g. SSW.Framework.WebUI)
    • Example: Generic XML-based navigation components

For more information see Do you have a consistent .NET Solution Structure?.

acknowledgements
related rules