NServiceBus をバージョン 3 から 4 にアップグレードすると、コンパイル中に次のエラーが発生します。
エラー CS0234: 型または名前空間名 'Impl' が名前空間 'NServiceBus.Sagas' に存在しません (アセンブリ参照がありませんか?)
if (NServiceBus.Sagas.Impl.Configure.SagasWereFound)
{
var connStr = ConfigurationManager.AppSettings["DB"];
// Register session factory which takes care of managing
// the database connections and transactions
Configure.Instance.Configurer.ConfigureComponent(typeof(OracleSagaSessionFactory),
DependencyLifecycle.InstancePerCall)
.ConfigureProperty("ConnectionString", connStr);
// Then register the saga persister itself
Configure.Instance.Configurer.ConfigureComponent(typeof(OracleSagaPersister),
DependencyLifecycle.InstancePerCall);
}