All I have to say is RTFM!  Well, if I would have looked at the SDK document a little bit closer, I could have read the answer!! Anyway, here’s the updated configuration file:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<system.serviceModel>
		<services>
			<service
				serviceType="Lozanotek.Examples.Indigo.TestService">
				<endpoint
					address=""
					bindingSectionName="basicProfileBinding"
					contractType="Lozanotek.Examples.Indigo.ITestService" />
				<endpoint
					address="/ws"
					bindingSectionName="wsProfileBinding"
					contractType="Lozanotek.Examples.Indigo.ITestService" />
				<endpoint
					address="/wsDual"
					bindingSectionName="wsProfileDualHttpBinding"
					contractType="Lozanotek.Examples.Indigo.ITestService" />
			</service>
		</services>
	</system.serviceModel>
</configuration>

Ahh, the sweet smell of functional code…