Hi all,
Just started a new job in 5.01.01 after doing one previous in 4.9.x.
Installed the new StarterKit into VS2008, got my new dev DNN site running created a superuser account in it and ready to start making modules.
I add a new C# dynamic module, rename the DesktopModules and App_Code entries as per usual and add the CodeSubDirectories entry to the web.config. This all builds in VS, I import the .dnn manifest then go to excutute the 01.00.00.SqlDataProvider in Host > SQL which throws
System.Data.SqlClient.SqlException: Invalid pseudocolumn "$YourCompany$_$safeprojectname$".
Looking at the 1.0.0 file for the two Get stored procs we have
select ModuleId,
ItemId,
Content,
CreatedByUser,
{objectQualifier}$YourCompany$_$safeprojectname$.CreatedDate
If I change the last SELECT column to just
select ModuleId,
ItemId,
Content,
CreatedByUser,
CreatedDate
This runs clean and the module is OK to work on, so ive found a work around but wondering what the issue is? I know the $$ are for VS templating?
Thanks