Skip to content

Commit

Permalink
missing semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
fthornton67 committed Oct 7, 2024
1 parent 55bb4ca commit 202f685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MeteredTriggerJob/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void Main (string[] args)
};

var creds = new ClientSecretCredential(config.TenantId.ToString(), config.ClientId.ToString(), config.ClientSecret);
var versionInfo = new AppVersionService(Assembly.GetExecutingAssembly()?.GetName()?.Version)
var versionInfo = new AppVersionService(Assembly.GetExecutingAssembly()?.GetName()?.Version);

var services = new ServiceCollection()
.AddDbContext<SaasKitContext>(options => options.UseSqlServer(configuration.GetConnectionString("DefaultConnection")), ServiceLifetime.Transient)
Expand Down

0 comments on commit 202f685

Please sign in to comment.