...
You will first need to setup IIS for setting up virtual directories for the extension projects. Please refer this IIS Setup for BCF Extensions to do that.
Once you have completed the IIS Setup, change the db name and password in the web.config and web.User.config for each of the extension projects( Eg: C:\coredev\src\MarineLMSExtensions.Web.BCF.PassagePlanner\Web.User.config) to
<add name="SEALearningCS" providerName="System.Data.SqlClient" connectionString="Data Source=.\SQL2012; Initial Catalog=<yourDBname>; user=aspuser; password=13Monsters#;"/>
where “yourDBname” is the name of your anonymized DB for BCFAgendaBuilder/BCFPassagePlanner or BCFCompetencySurfer. Repeat this for all three BCF extensions.Include the DB connection parameters in the App.User.Config of MarineLMSExtensions.Service.Main( at coredev\src\MarineLMSExtensions.Service.Main\App.User.config).
Rebuild your solution now and start the core service. Note - You don’t need to start the extension service for BCF Extensions.
You can now access the BCF extensions using /ext/BCFAgendaBuilder, /ext/BCFPassagePlanner and ext/BCFCompetencySurfer.
...