How to set the license in .NET Core 3.1 application

Hi.

I made a formum post 5 hrs ago or something. I know you might not have had time to get to it yet. But i wonder if its possible to get access to the example app from here Sample Dot Net Core App that uses Aspose.Words for .NET

Or atleast the startup.cs from here
https://forum.aspose.com/t/applying-license-on-net-core/185194/8

@Zwoll

Please include the License File as an Embedded Resource and set the license as shown below.

public Startup(IConfiguration configuration)
{
    Configuration = configuration;
    Aspose.Words.License lic = new Aspose.Words.License();
    lic.SetLicense(@"Aspose.Total.lic");
}