Headers on Azure deploy

Site is getting an "F" on securityheaders.com.

How do I set custom headers when deploying to azure. Azure app service is Linux and changes to web.config do not seem to make a difference. do I need a .htaccess file and how do include that in the build?

I don't think this is related to Radzen. I suggest searching online for configuring custom headers in Azure.

I don't know if you need a .htaccess file but this article shows how to include a file in the deployed application. You just need to add it to your .csproj file:

<ItemGroup>
    <None Include="file.pdf" CopyToPublishDirectory="Always" />
</ItemGroup>