Reputation: 242
I am trying to remove all build warnings in the .net core template. I have reduced it to one:
I am trying to find a way to eliminate or suppress this warning in the smallest possible scope.
Upvotes: 0
Views: 256
Reputation: 264
you can remove the setting manager in the layout.cshtml directly.
Remove unnecessary setting manager injection since it has been injected in AbpRazorPage
See the changes in https://github.com/aspnetboilerplate/module-zero-core-template/pull/450
Upvotes: 1