Skip to main content
3 votes
1 answer
59 views

I'm deploying a function app (v4, .NET 10, Windows) to Azure; in the function I configure an EventHubTrigger. [Function(nameof(MyEventHubProcessing))] public async Task RunAsync([EventHubTrigger("...
JohnKoz's user avatar
  • 1,007
-1 votes
0 answers
51 views

I'm looking for help to suppress very annoying logging - something I am not getting about configuration. In ACA Log stream I keep seeing these log entries: 2025-12-17T15:54:39.257462600Z 2025-12-17 15:...
Andrey's user avatar
  • 478
3 votes
1 answer
113 views

I have to set a string array in the configuration when starting an ASP.NET Core web application. I get the string array from Azure Key Vault, and it works fine. It's only included in the code below ...
Anders Finn Jørgensen's user avatar
1 vote
1 answer
77 views

If I add an appsetting.{environment}.json to the project, normal it will automatically show up under the appsetting.json. For example I added one for environment "Test". But if I add one ...
JHJ's user avatar
  • 421
0 votes
1 answer
174 views

I'm working on an ASP.NET Core Web API project that used to work fine with IOptions<ApplicationSettings> to bind values from appsettings.json. But suddenly, appSettings.Value is returning null, ...
Kasturi's user avatar
  • 49
2 votes
1 answer
102 views

I have an int setting in appsettings.json that I read from C#: const int HardCodedDefault = 42; int settingValue = configuration.GetValue<int>("myKey", HardCodedDefault); ...
Medinoc's user avatar
  • 6,709
0 votes
0 answers
43 views

1. ObjectStorageFramework Extension: using ASobjectstorage.Interface; using ASobjectstorage.Models; using ASobjectstorage.Services; using Microsoft.Extensions.Configuration; using Microsoft.Extensions....
Jayachandran's user avatar
0 votes
1 answer
88 views

I used to hide my SQL database logs from Console/Debug by adding this line of code in the Program.cs: builder.Host.UseSerilog((builderContext, config) => { config.ReadFrom.Configuration(...
Mihai Socaciu's user avatar
0 votes
2 answers
197 views

I am in the process of migrating a large solution from .NET Framework 4.8 to .NET 9.0. I used .NET Upgrade Assistant to get started. I have a long way to go. All of the projects in the solution have ...
Trint's user avatar
  • 29
0 votes
2 answers
56 views

I have a command line app that uses .NET's dependency injection. It works fine when called in its directory, like C:\GitHub\MyProject\bin\Debug\net9.0>MyApp However, when I add it to the Path ...
Keith's user avatar
  • 157k
0 votes
1 answer
95 views

I have this configuration in an ASP.NET Core MVC app: "CustomSite": {     "Management": {         "Confined": {             "DefaultUILanguage": "en-GB&...
KeithViking's user avatar
0 votes
2 answers
142 views

I have this MagicSgtrings class that holds some constants which I'm using in my worker service. internal class MagicStrings { public const string HttpClientName = "X_HttpClient"; ... } ...
sTx's user avatar
  • 1,295
-1 votes
1 answer
83 views

i have a .net core application that uses event hub to consume & produce messages. it uses azure event hub & i configured sasl.username as "$ConnectionString" & sasl.password as &...
Prageeth Athulathmudali's user avatar
0 votes
3 answers
221 views

I have an Azure Function app that is configured with a "Information" logging filter for the MyCompany.IAM.AssetGovernance category: appsettings.json { "Logging": { "...
Shuzheng's user avatar
  • 14.6k
-1 votes
1 answer
370 views

I have an Azure Function app created locally using Python code, SQL Server change tracking that tracks any operation and triggers the SQL Server trigger for further process. app = func.FunctionApp() ...
sudip's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
77