private void Context_EndRequest(object sender, EventArgs e)
{
var context = ((HttpApplication)sender).Context;
if (context.Items[typeof(IServiceScope)] is IServiceScope scope)
{
scope.Dispose();
}
}
当我尝试构建项目( Framework 4.7.2 )时,我得到
:错误CS1026:)预期:错误CS1002:;预期:错误CS1513: }预期
在线
if (context.Items[typeof(IServiceScope)] is IServiceScope scope)
但是我看不到它在哪里引发错误。
答案 0 :(得分:0)
它有助于通过Nuget更新“ Microsoft.Net.Compilers”
现在它可以正确构建了。