Skip to content

Commit

Permalink
nest config
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos authored Jun 29, 2023
1 parent 472a1ab commit 572bceb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dotnet-core-webapp/appsettings.Acc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"LastDeployed": "__LAST_DEPLOYED__"
}
11 changes: 11 additions & 0 deletions dotnet-core-webapp/appsettings.DevTest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"LastDeployed": "__LAST_DEPLOYED__"
}
6 changes: 6 additions & 0 deletions dotnet-core-webapp/dotnetcore-webapp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
<None Update="appsettings.Development.json">
<DependentUpon>appsettings.json</DependentUpon>
</None>
<None Update="appsettings.DevTest.json">
<DependentUpon>appsettings.json</DependentUpon>
</None>
<None Update="appsettings.Acc.json">
<DependentUpon>appsettings.json</DependentUpon>
</None>
</ItemGroup>

</Project>

0 comments on commit 572bceb

Please sign in to comment.