Replies: 1 comment 2 replies
-
Are you talking about aspnetboilerplate? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I uploaded aspboilerplate EF version 2.2 to 3.1 and in the startup.cs folder I added this code block ;
services.AddControllersWithViews( options => { options.Filters.Add(new AbpAutoValidateAntiforgeryTokenAttribute()); } ).AddNewtonsoftJson(options => { options.SerializerSettings.ContractResolver = new AbpMvcContractResolver(IocManager.Instance) { NamingStrategy = new CamelCaseNamingStrategy() }; });
but the compiler can not find the AbpAutoValidateAntiforgeryTokenAttribute() , which package or version do I need to install?
Beta Was this translation helpful? Give feedback.
All reactions