How do you force line breaks before the dot?
For example:
Method()
.CallAnother()
.AndAnother()
I also want to flow the following:
Bind<IService>().ToMethod(ctx => new DataRetrievalService()).InSingletonScope().Named(
"LIVESERVICE");
As:
Bind<IDataRetrievalService>()
.ToMethod(
ctx => new AdobeDataRetrievalService())
.InSingletonScope()
.Named("LIVESEARCHRETRIEVALSERVICE");
This may be the same thing or it could be something different??