I just got the latest Sharp-Architecture and Fluent Nhibernate versions from github. Now if I create a site from the Sharp-Architecture VS template it does not build.
It throws the following error on types and Interfaces:
Error 1 The type or namespace name 'IClassMap' could not be found (are you missing a using directive or an assembly reference?) G:\Development\Singleton Affiliate Marketting\Projects\Singleton\app\Singleton.Data\NHibernateMaps\Conventions\TableNameConvention.cs 8 28 Singleton.Data
Error 2 The type or namespace name 'IOneToManyPart' could not be found (are you missing a using directive or an assembly reference?) G:\Development\Singleton Affiliate Marketting\Projects\Singleton\app\Singleton.Data\NHibernateMaps\Conventions\HasManyConvention.cs 8 28 Singleton.Data
Error 3 The type or namespace name 'IManyToOnePart' could not be found (are you missing a using directive or an assembly reference?) G:\Development\Singleton Affiliate Marketting\Projects\Singleton\app\Singleton.Data\NHibernateMaps\Conventions\ReferenceConvention.cs 8 28 Singleton.Data
Error 4 The type or namespace name 'IClassMap' could not be found (are you missing a using directive or an assembly reference?) G:\Development\Singleton Affiliate Marketting\Projects\Singleton\app\Singleton.Data\NHibernateMaps\Conventions\TableNameConvention.cs 12 27 Singleton.Data
Error 5 Using the generic type 'FluentNHibernate.Mapping.OneToManyPart<TChild>' requires '1' type arguments G:\Development\Singleton Affiliate Marketting\Projects\Singleton\app\Singleton.Data\NHibernateMaps\Conventions\HasManyConvention.cs 12 27 Singleton.Data
Error 6 The type or namespace name 'IManyToOnePart' could not be found (are you missing a using directive or an assembly reference?)*
It seems like FluentNHibernate.Mapping does not contain any of these interfaces any more.
What should I do? Should I use the version of the assembly it had when I downloaded?
Basically I want to debug and see how everything works together.