Host.CreateDefaultBuilder.Example
Host.CreateDefaultBuilder.Example copied to clipboard
Something to add to the README
Hi,
Great work on this, spent the whole day looking into how to do this before I found your solution. One thing that caught me up when I did this on my own project - my appsettings.json file wasn't getting loaded in as my .csproj file didn't contain the following.
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Might be something to add to the README!