我在.Net核心应用程序中使用了一些不安全的代码。
为此,我在project.json文件中进行了此更改
"compilationOptions": { "allowUnsafe": true,}
仍然出现此错误error CS0227: Unsafe code may only appear if compiling with /unsafe
我已经经历过了

Unsafe code won't compile on Visual Studio 2015

How to call unsafe code from ASP.NET xproj

最佳答案

compilationOptions更改为buildOptions:

"buildOptions": {
    "allowUnsafe": true
}

10-08 02:26