- Included `CommandDotNet.Execution` namespace in `Program.cs`. - Adjusted logging setup to clear providers and use NLog only in non-development environments. - Added `AddHttpContextAccessor` to the service collection. - Introduced a new `ConnectionStrings` section in `appsettings.Development.json` with a database connection string.
14 lines
355 B
JSON
14 lines
355 B
JSON
{
|
|
"DetailedErrors": true,
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AdminPassword": "dd",
|
|
"UseCSPInDev": false,
|
|
"ConnectionStrings": {
|
|
"Default": "Server=sDD-VMP04-SQL19\\CURSORAG;Database=DD_ECM;User Id=sa;Password=dd;Encrypt=false;TrustServerCertificate=True;"
|
|
}
|
|
} |