I’m trying to run the .NET application to generate a custom template but I keep getting the Markup file not found
error. Following the documentation, I am placing the said markup (template.txt) in the /bin/Debug directory of the project. Here is the code
namespace Test
{
internal class Program
{
static void Main(string[] args)
{
Aspose.OMR.Api.OmrEngine omrEngine = new Aspose.OMR.Api.OmrEngine();
Aspose.OMR.Generation.GenerationResult generationResult = omrEngine.GenerateTemplate("C:\\GitHub\test\\Aspose\\bin\\Debug\\template.txt");
generationResult.Save("", "template.OMR");
}
}
}