#AppSettings
they have ads in copilot now. the bubbles bursting lads!!!!!! i’m absolutely thrilled
March 30, 2026 at 1:58 PM
GeekPost: the Set-WebApp Azure PowerShell command needs more permissions than Azure CLI’s ‘az webapp config appsettings set’ and it ruined my Monday.
March 24, 2026 at 10:19 AM
In iPadOS 26, the new menu bar automatically adds an action that links to your app’s system settings. However, pressing [⌘,] should usually open your in-app settings. Using CommandGroup (replacing: .appSettings) takes care of that.
#SwiftUI
September 24, 2025 at 5:50 PM
You can put your password field in quotes and it will work:

Example in appsettings config connection string:

Password=\"dbPassword;\"
November 26, 2025 at 5:17 PM
you know sometimes you get insane enough after two days of head-into-brick-wall debugging to go "maybe the computer is just haunted! maybe every time I run it grabs a different one of the 5(!) appsettings files PURELY AT RANDOM because it hates me!" and then sometimes you check and that's EXACTLY WH
September 17, 2025 at 2:35 PM
It's my own fault for trying to use secrets manager to keep passwords out of code rather than just putting them in appsettings
May 11, 2025 at 10:58 PM
¿Te has topado con números sueltos en el código y te toca adivinar qué hacen?
Esos "magic numbers" son un code smell que confunde a cualquiera. Si el valor puede cambiar, mejor llévalo a appsettings o usa constantes claras.
¿Te ha pasado?
#CleanCode #Software #Developer
June 28, 2026 at 3:42 PM
Trying to get Kestrel to use a certificate located in LocalMachine/Web Hosting by configuring via appsettings. Way harder then I expected
June 8, 2023 at 11:01 AM
Discover how to securely store secrets in .NET! Learn the use of environment variables, appsettings, user secrets, and more for enhanced security. #DotNet #CyberSecurity
dev.to
July 12, 2025 at 9:15 AM
At first I was like, meh, run file. Like, is it so hard to `dotnet new`? But then Damian showed the shebang and I was like... mmmm... okay that's pretty cool. :D

Also very cool that you can do whole apps in it with Razor files and appsettings and everything else with just some #: directives.
May 23, 2025 at 6:39 PM
Vuoi proteggere davvero il tuo WhatsApp? Ecco 3 impostazioni che devi attivare subito. Dalla chat privata alla sicurezza biometrica.
Guarda il video qui : youtube.com/shorts/1VlXl... #Formbit24 #TechTips #WhatsApp #CyberSecurity #DigitalPrivacy #MobileSecurity #AppSettings
November 14, 2025 at 4:45 PM
pics from how I was choosing #AIS history batch size and gather interval in the maritime project. because clickhouse is optimized for big inserts, 1k is already too little

decided on 1500 records x 10 s at least, or wait more untill gathered that amount

#buildinpublic #dev #dotnet #backend #devlog
May 14, 2026 at 8:45 PM
When I see "appSettings" my brain goes into a little loop of saying "yes, these things are so appSetting", "it's very appSetting"...
#justNDthings
September 4, 2023 at 8:20 AM
how to host my asp.net core api backend

#dotnet
how to host my asp.net core api backend
i have already hosted my mysql server on railway but, i cant directly host my [asp.net](http://asp.net) core api because as my appsettings isnt...
old.reddit.com
February 8, 2025 at 7:44 AM
Wlan hab ich in AppSettings gar nicht nicht erst zur Auswahl und Mobile Daten kann ich zwar abwählen, aber dann kommt halt auch nix.

Wenn Mobile Daten aus und Wlan an: download geht nicht.
Wenn Mobile Daten an und Wlan aus: download geht.
March 29, 2025 at 6:34 PM
It took me more than I expected, and although I know that is basic #dotnet and #azure content, I hope it can help other folks...

Many thanks to my colleagues Eltjo and Roberto for reviewing it.

Managing AspNetCore appSettings from local to release - DEV Community

#DEVCommunity
Managing AspNetCore appSettings from local to release
Introduction When working with any .NET application, we normally require to set up some...
dev.to
August 26, 2023 at 5:50 PM
PROBLEM 3
After all this, existing JWTs were not being authorized properly. I moved from providing the JWT secret to the app inside appsettings to using an env file. Somewhere in the process between specifying the secret in GHA to loading it into Docker Swarm, the string had its special characters
December 22, 2024 at 5:41 AM
Using Configuration Builder to Read Application Settings Stored in appsettings.json with Visual Studio 2022 and .NET 7.0
Sometimes you want to quickly read settings without any of the regular dependency injection or typical ceremony such as creating a strong typed object to store values. For example, when creating the Audio Notes MVP, I wanted a quick way to read the Azure AI Language API endpoint and API key. Example JSON File You can see the appsettings.json file with these values here: { Logging: { LogLevel: { Default: Information, Microsoft.AspNetCore: Warning } }, AppSettings: { TextAnalyticsEndpoint: https://{endpoint}.azure.com/, TextAnalyticsAPIKey: {api-key} }, AllowedHosts: * } Reading App Setting Properties Here is the C# that’s needed to read these settings: public async Task SummarizeTextAsync(string document) { try { var MyConfig = new ConfigurationBuilder().AddJsonFile(appsettings.json).Build(); var TextAnalyticsEndpoint = MyConfig.GetValue(AppSettings:TextAnalyticsEndpoint); var TextAnalyticsAP
jamiemaguire.net
August 8, 2025 at 5:14 PM
I just checked in a 800+ line code change it took the LLM 15 minutes to write, but, I spent 5+ hours writing and refining the .md file that contained the requirements 😉😂 - github.com/Blazor-Data-...
Add environment-specific job queues and admin UI · Blazor-Data-Orchestrator/BlazorDataOrchestrator@d3ea623
- Introduce JobQueue entity and EF relationships for queue routing - Jobs can now be assigned to specific Azure Queues - Support environment-specific appsettings loading per job - Enhance JobExecut...
github.com
January 19, 2026 at 5:52 PM
[BLOGGED] Reading Appsettings.json from Class Library projects in .NET

Short blog on accessing values in appsettings.json directly in class library projects.

Info here:

https://jamiemaguire.net/index.php/2023/12/23/reading-appsettings-json-from-class-library-projects-in-net/
Reading Appsettings.json from Class Library projects in .NET
I like to encapsulate as many business rules and logic as possible in class libraries.   These are often used in web APIs, Azure Functions or wherever is required.   Sometimes you want to access values from an appsettings.json file that exists in a class library project but not pass values or JSON references through different layers of your solution to said class library.   This short post shows you how to do this.   Note: This is more for my own reference and when creating prototypes locally, but you may find it useful. A better approach for cloud solution configuration management is to use Azure Key Vault or Azure App Configuration. ~ Appsettings.json We have the following values in the JSON file: {  YourKey1: YourValue1,  YourKey2: YourValue2 }   Creating a Helper Class A static helper class ApplicationConfiguration is created. It imports the namespace Microsoft.Extensions.Configuration. The appsettings.json file is loaded from the directly the assembly is run
jamiemaguire.net
May 2, 2025 at 5:55 AM
Firestore Credential Initialization With AppSettings
Firestore Credential Initialization With AppSettings
furotmark.github.io
August 26, 2026 at 2:02 PM
Managing iPhone app settings is often inconsistent. A unified approach could enhance user experience. #iOS #Apple #AppSettings #UserExperience #TechNews #iPhone thedailytechfeed.com/streamlining...
August 10, 2026 at 1:31 PM