chromelyapps / Chromely

Build Cross Platform HTML Desktop Apps on .NET using native GUI, HTML5, JavaScript, CSS, Owin, AspNetCore (MVC, RazorPages, Blazor)
MIT License
2.98k stars 279 forks source link

Error in the example on the wiki #326

Closed RadikX closed 3 years ago

RadikX commented 3 years ago
using Chromely;
using Chromely.Core;

namespace My_Chromely_App
{
    class DemoChromelyApp : ChromelyBasicApp
    {
        public override void ConfigureServices(IServiceCollection **services**)
        {
            base.ConfigureServices(**container**);
            // other service configuration can be placed here
        }
    }
}

In the example on the wiki there is a typo. Must be a "services", not "container". It's not that important , but buuee.

mattkol commented 3 years ago

@RadikX good catch. Thanks.