I just upgraded from 2.5 to 2.6. Done by uninstalling 2.5, then installing 2.6.
Next I opened a project from 2.5 and ran the generator. Unfortunately, the newly generated project won't compile (It's type adaptor targeting .NET2). The first compile error is (amongst many others):
"Error 1 'SD.LLBLGen.Pro.DQE.SqlServer.DynamicQueryEngine' does not contain a definition for 'FactoryToUse'"
This was in DatabaseSpecific\DataAccessAdapter.cs 475 76
Looking at the project files, possibly it's because the dll references aren't changed, eg the .csproj file has:
<ItemGroup>
<Reference Include="SD.LLBLGen.Pro.ORMSupportClasses.NET20, Version=2.5.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27, processorArchitecture=MSIL">
<SpecificVersion>True</SpecificVersion>
<HintPath>
</HintPath>
</Reference>
<Reference Include="SD.LLBLGen.Pro.DQE.SqlServer.NET20, Version=2.5.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27, processorArchitecture=MSIL">
<SpecificVersion>True</SpecificVersion>
<HintPath>
</HintPath>
</Reference>
Am I missing some vital step in the upgrade?
Help!
Rgds,
Peter