Dot net 8
Some checks failed
Build App / Build (push) Failing after 43s

This commit is contained in:
2025-02-09 22:30:00 +01:00
parent 91664406c4
commit 73407e5867
16 changed files with 64 additions and 54 deletions

View File

@@ -38,9 +38,9 @@ sealed class Program
var restUser = builder["REST:User"].ToString();
var restPassword = builder["REST:Password"].ToString();
currentMutable.RegisterLazySingleton<RestService>(() =>
currentMutable.Register<RestService>(() =>
{
var restService = new RestService();
var restService = new RestService(new Uri(restUrl), restUser, restPassword);
try
{
restService.Connect(new Uri(restUrl), restUser, restPassword);
@@ -53,7 +53,7 @@ sealed class Program
return restService;
});
}
// Avalonia configuration, don't remove; also used by visual designer.