I\'ve just swapped our project from ASP .Net Core 1.0.0-rc2-final to 1.0.0. Our website and client have stopped working because of the capitalization of JSON properties. For
MVC now serializes JSON with camel case names by default
Use this code to avoid camel case names by default
services.AddMvc() .AddJsonOptions(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver());
Source: https://github.com/aspnet/Announcements/issues/194