Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unsafe code won't compile on Visual Studio 2015

I'm trying to compile a program on the new DNX4.6 core, but it won't compile due to:

error CS0227: Unsafe code may only appear if compiling with /unsafe

This is my code:

    [CompilerGenerated]
    public unsafe class GrayscaleQuantizer : PaletteQuantizer
    {
I've looked online, and I can't get any source with the same problem as I have. I can't tick the 'Allow Unsafe Code' at the Build tab of the Project Properties, because there is no option to do so...

Does anyone know a solution?

like image 679
koelkastfilosoof Avatar asked Jul 08 '15 14:07

koelkastfilosoof


1 Answers

You need to set "allowUnsafe": true in the build options in project.json.

like image 85
SLaks Avatar answered Sep 30 '22 15:09

SLaks