Cleanup before refactor
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
using Bimix.UI.Mobile.Services;
|
||||
using System.Reflection;
|
||||
using Bimix.UI.Mobile.Services;
|
||||
using Bimix.UI.Shared.Extensions;
|
||||
using Bimix.UI.Shared.Interfaces;
|
||||
using Bimix.UI.Shared.Services;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Maui.Controls.Hosting;
|
||||
using Microsoft.Maui.Devices;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using MudBlazor.Services;
|
||||
using ZXing.Net.Maui.Controls;
|
||||
|
||||
@@ -17,6 +24,11 @@ public static class MauiProgram
|
||||
.UseBarcodeReader()
|
||||
.ConfigureFonts(fonts => { fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); });
|
||||
|
||||
builder.Configuration
|
||||
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: false)
|
||||
.AddJsonFile($"appsettings.Development.json", optional: true, reloadOnChange: false)
|
||||
.AddEnvironmentVariables();
|
||||
|
||||
builder.Services.AddMauiBlazorWebView();
|
||||
builder.Services.AddMudServices();
|
||||
|
||||
@@ -29,25 +41,27 @@ public static class MauiProgram
|
||||
builder.Services.AddSingleton<IScannerService, NoOpScannerService>();
|
||||
}
|
||||
|
||||
builder.Services.AddScoped<AuthService>();
|
||||
|
||||
var baseUrl = GetApiBaseUrl();
|
||||
builder.Services.AddSharedServices(baseUrl);
|
||||
|
||||
|
||||
|
||||
#if DEBUG
|
||||
builder.Services.AddBlazorWebViewDeveloperTools();
|
||||
builder.Logging.AddDebug();
|
||||
builder.Logging.SetMinimumLevel(LogLevel.Debug);
|
||||
#endif
|
||||
return builder.Build();
|
||||
}
|
||||
|
||||
|
||||
private static string GetApiBaseUrl()
|
||||
{
|
||||
#if IOS
|
||||
// iOS symulator - użyj swojego IP
|
||||
return "http://192.168.13.44:7142/"; // Zastąp swoim IP
|
||||
// iOS symulator
|
||||
return "http://192.168.29.140:7142/";
|
||||
#else
|
||||
return "https://localhost:7142/";
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user