mmanela / diffplex

DiffPlex is Netstandard 1.0+ C# library to generate textual diffs.
Apache License 2.0
990 stars 183 forks source link

using diffplex with StructureMap #89

Open gswartz777 opened 2 years ago

gswartz777 commented 2 years ago

In our mvc app (.net framework 4.7.2) I'm following along with the example web site by adding the following to our defaultregistry file.

For<ISideBySideDiffBuilder>().Use<SideBySideDiffBuilder>();
For<IDiffer>().Use<Differ>();

But it's complaining about No default Instance is registered and cannot be automatically determined for type 'DiffPlex.IChunker' How can I resolve this in structuremap? Thanks.