We are trying to load the license file we purchased. We want to load it like we do for other licenses, such as Aspose.Font.NET, where we have it as an embedded resource and load it from a stream.
This is how we are trying to do it and it tells us the license is invalid when we do.
using var stream = typeof(AppSettings).Assembly.GetManifestResourceStream("GroupDocs.Comparison.NET.lic");
new GroupDocs.Comparison.License().SetLicense(stream);