Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
Philippe Lavoie edited this page Mar 11, 2020 · 90 revisions

Welcome to the Dynamite wiki!

Make sure you start with reading the Dynamite project README and its Quick Start Guide.

In this wiki you will find:

Building maintanable and modular SharePoint farm solutions with Dynamite

Why Dynamite? Why farm solutions?

SharePoint 2013 introduces the new App-model for SharePoint custom solution development. Microsoft's guidelines are clear: in 2013, whenever possible, build things the App-way. While Apps have the benefit of de-coupling your custom functionality from your mission-critical on-premise SharePoint infrastructure, the SharePoint client-side APIs do come with some limitations.

Full-trust SharePoint solution development is still the most powerful option for customizing your SharePoint 2013 farm. If you are still developing in a SharePoint 2010 context, farm solutions are your only option (if we ignore the unpopular and soon-to-be-deprecated sandbox solution model).

The Dynamite project for SharePoint 2013 (built by GSoft's SharePoint development experts - Team Dynamite) is a C# toolkit of reusable components that guide you into the "right" path for full-trust solution development. A version of Dynamite for SharePoint 2010 is also available, for all of you who are still supporting legacy environments.

Some essential values put forward by Dynamite are the following:

  • A truly modular architecture through Dependency Injection
    • to promote code reuse across projects
    • to make your components easy to test
    • to provide extension points for alternative usages of your features (i.e. configurability)
    • to avoid massive multi-project deployments when possible (i.e. modular rather than monolithic deployments)
  • Entirely automated deployments through templated PowerShell scripts
    • to avoid error-prone manual operations at all costs
    • to provide a reproducible installation process in any SharePoint farm environment
  • Intelligent, code-driven, self-correcting features
    • to reduce risk when upgrading your SharePoint solutions
    • to eliminate your dependency on SharePoint's often hard-to-upgrade XML-based definitions
    • to easily maintain your solutions in the long term within the enterprise

Many of these ideas take their origin in Microsoft's patterns and practices team's famous SharePoint 2010 development guide. The Dynamite toolkit and the guide that follows are the end results of applying many of these ideas in the wild in real-life enterprise scenarios since 2010.

1. A modular approach to building SharePoint farm solutions with Dynamite and Autofac

2. Automate your deployments and upgrades end-to-end with the Dynamite PowerShell Toolkit

3. Making the best of Dynamite: discover its powerful and time-saving utilities

Git beginner's guide

All of Team Dynamite's projects are hosted on Github. We recommend using Atlassian's SourceTree git client for source control management. This guide should help you get started on the path to contributing to the Dynamite project.

Clone this wiki locally