Add appsettings.json to main application. This will overwrite the one previously inherited from DataLayer

This commit is contained in:
Robert McRackan 2019-12-09 15:24:25 -05:00
parent 54eea8ddae
commit 41620352e8
4 changed files with 10 additions and 1 deletions

View File

@ -32,7 +32,6 @@
<ItemGroup> <ItemGroup>
<None Update="appsettings.json"> <None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</None> </None>
</ItemGroup> </ItemGroup>

View File

@ -39,4 +39,11 @@
</EmbeddedResource> </EmbeddedResource>
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</None>
</ItemGroup>
</Project> </Project>

View File

@ -0,0 +1,3 @@
{
"": ""
}