Results 12 comments of Keertesh

AbpSecurityHeadersOptions is throwing not found error though other libs are loading.

public override void OnApplicationInitialization(ApplicationInitializationContext context) { var app = context.GetApplicationBuilder(); var env = context.GetEnvironment(); app.UseAbpSecurityHeaders(); Configure(options => { options.UseContentSecurityPolicyHeader = true; //false by default options.ContentSecurityPolicyValue = "object-src 'none'; form-action 'self';...

I was trying to use the following: ![image](https://github.com/abpframework/abp/assets/13175673/6d41d3a4-66a2-48fd-a39d-b99a040f2b7b) [page ref](https://docs.abp.io/en/abp/latest/UI/AspNetCore/Security-Headers), but even after running the abp install-libs, I'm getting not found for AbpSecurityHeadersOptions.

![image](https://github.com/abpframework/abp/assets/13175673/bde294e7-61c7-4f8c-8801-3eafca3d1aec)

![image](https://github.com/abpframework/abp/assets/13175673/5a4e35ca-2de9-4f95-8aca-6760a03fcbe9)

The same setup was working earlier.

![image](https://github.com/abpframework/abp/assets/13175673/d2a45d58-f21a-4904-a9e8-6b67bd1f602d) will this be taken care of with HTTPS or do I have to use ABP settings to make those changes?