Remove appsettings.development.json when publishing a .NET core project

ASP.NET core

Edit the publish profile file *.pubxml

Add this:
<ItemGroup>
    <Content Remove="appsettings.Development.json" />
    <None Include="appsettings.Development.json" />
</ItemGroup>

Post a Comment

Previous Post Next Post