Hi there,
I'm trying to use the C# Compiled Module Starter Kit with Visual Studio 2008 but am running into a problem I can't seem to fix. I've already converted everything to Visual Studio 2008, so that's working just fine. But in the template project, there's a hardcoded reference to http://localhost/DNN_4_3_6 which I think should simply point to the DotNetNuke source installation. I've changed that (it's http://localhost/DotNetNukeSrc in my case). So, in "Location:" I guess I should simply put in my path to the source installation + Website\DesktopModules (in my case, this is C:\projects\web\DotNetNuke0Src\Website\DesktopModules - the "0" is there for sorting purposes).
Unfortunately, I'm getting an error from Visual Studio, saying: "The local IIS URL http://localhost/DotNetNukeSrc specified for Web project TestModule has not been configured. In order to open this project the virtual directory needs to be configured. Would you like to create the virtual directory now?"... Well, it's not true: http://localhost/DotNetNukeSrc IS specified (here without the '0'). This is my DotNetNuke source installation project mapped in IIS. Consequently, when I say "yes", it says "already mapped to a different folder location".
I think the problem probably is in this snipped from the project file:
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>0</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost/DotNetNukeSrc</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
Anybody has any idea how to fix this?
Sunny regards,
Jashan