Joined: Tue Apr 29, 2008 10:10 am Posts: 1
|
|
Wondering if anyone could point me in the right direction here. I'm currently going through the example and have loaded the 1.1 solution (we are still on 1.1 at work! :-/ ). I notice the following code:
if (System.IO.File.Exists("OrderSystem.Objects.dll"))
{
// context is .net 2.0
cfg.AddAssembly(Assembly.LoadFrom("OrderSystem.Objects.dll"));
}
else
{
cfg.AddAssembly(Assembly.LoadFrom("OrderSystem.Objects11.dll"));
//cfg.ClassMappings
}
The problem is that my 1.1 solution contains OrderSystem.Objects instead of the OrderSystem.Objects11, therefore I'm unable to run the example. Does anyone know where I can find the OrderSystem.Objects11 project to use rather than the one for .net 2.0?
|
|