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 280 forks source link

I get an exception when running the executable. #318

Closed karuzzo closed 3 years ago

karuzzo commented 3 years ago

Stack: .NET 5 + blazor server side if I run the application from under Visual Studio it runs correctly, but as soon as I try to run the executable file in the release or debug folder, it gives an error.

изображение_2021-04-25_115327

the same error is present in the blazor server side demo app

mattkol commented 3 years ago

@karuzzo you are likely missing static files. This project does not support installation and publishing, you can check other resources online to see how to package ( or add static files in Asp.Net Core). This is just a bare bone demo.

karuzzo commented 3 years ago

Thank you for such a quick response.