Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
peggy-quartech committed Jan 16, 2024
1 parent b9b81f7 commit 536919d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/Spd.Presentation.Dynamics/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
using System.Configuration;
using System.Reflection;
using System.Text.Json.Serialization;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Spd.Presentation.Dynamics.Swagger;
Expand All @@ -10,8 +7,17 @@
using Spd.Utilities.Hosting.Logging;
using Spd.Utilities.Payment;
using Spd.Utilities.TempFileStorage;
using System.Configuration;
using System.Reflection;
using System.Text.Json.Serialization;

var builder = WebApplication.CreateBuilder(args);

//todo: remove,just testing
ILogger logger = builder.Services.BuildServiceProvider().GetRequiredService<ILogger<Program>>();
logger.LogInformation("This is a testlog");
//end

var assemblies = Directory.GetFiles(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? string.Empty, "*.dll", SearchOption.TopDirectoryOnly)
.Where(assembly =>
{
Expand Down

0 comments on commit 536919d

Please sign in to comment.