我正在将我的ASP.NET 1.1项目迁移到2.0:
在char
类中,在signed char
方法覆盖下,我有:
Setup
缺少Configure
方法。
发生了什么事?我怎样才能获得相同的功能?
答案 0 :(得分:14)
AddJsonOptions
在Microsoft.AspNetCore.Mvc.Formatters.Json nuget包中定义。
如果您的项目依赖于Microsoft.AspNetCore.All
元数据包(在.csproj:<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0"/>
中),那么您已经拥有它。否则,您可能需要直接添加该包。
之后:
dotnet restore
using Microsoft.Extensions.DependencyInjection;