One of the properties is "Custom Tool". Set this property to "LeMP" (without the quotes).
If LeMP is installed, then a new source file will appear in your project, Files.out.cs.
Check the Error panel to see if any errors occurred. If not, you should see contents of your files in Files.out.cs:
using System;
using System.Collections.Generic;
using System.Linq;
namespace LeMPIncludeFileExample
{
class Files
{
static readonly byte[] smileGif = new byte[] {
0x47,0x49,0x46,0x38,0x39,0x61,0xF,0x0,0xF,0x0,0xF3,0x0,0x0,0xFF,0xEA,
0x0,0x45,0x45,0x45,0x0,0x0,0x0,0xFF,0xCE,0x0,0xFF,0xC9,0x0,0xFF,0xB4,0x0,
0xFE,0x9D,0x0,0xFF,0xFE,0x93,0xFF,0xFD,0x13,0xFF,0xFF,0xFF,0xFF,0xFF,0xC7,0x33,
0x33,0x33,0xFF,0xFF,0xEB,0xFF,0xE5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xF9,
0x4,0x1,0x0,0x0,0xE,0x0,0x2C,0x0,0x0,0x0,0x0,0xF,0x0,0xF,0x0,0x0,
0x4,0x5B,0xD0,0x49,0x19,0x6A,0x9D,0xD8,0x55,0xA6,0xCE,0x19,0x17,0x16,0x70,0x8,
0x2,0x9C,0x83,0x11,0x4C,0x41,0x27,0x8,0x27,0xF0,0xA6,0xAB,0x76,0x98,0x71,0xE,
0x6A,0xA,0xE,0x9F,0x3F,0x82,0x2A,0x70,0x3,0xC6,0x82,0x85,0xCA,0x21,0xC7,0x4,
0x10,0x92,0x1,0xD3,0xA2,0x9,0x58,0x3C,0x2B,0x3,0xD9,0x6B,0xBB,0x15,0xAE,0x2,
0x59,0x41,0x62,0x3C,0x16,0x10,0x76,0x9A,0xC1,0xA0,0xC1,0x35,0xD3,0x58,0x6A,0x82,
0x5C,0xFE,0x16,0x5,0xA,0xF8,0xC2,0x30,0xC3,0xB2,0xD4,0x26,0x11,0x0,0x3B
};
static readonly byte[] sadGif = new byte[] {
0x47,0x49,0x46,0x38,0x39,0x61,0xF,0x0,0xF,0x0,0xF3,0x0,0x0,0xFF,0xEA,
0x0,0x45,0x45,0x45,0x0,0x0,0x0,0xFF,0xCE,0x0,0xFF,0xC9,0x0,0xFE,0x9D,0x0,
0xFF,0xB4,0x0,0xFF,0xFE,0x93,0xFF,0xFD,0x13,0xFF,0xFF,0xC7,0xFF,0xE5,0x0,0xFF,
0xFF,0xEB,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xF9,
0x4,0x1,0x0,0x0,0xC,0x0,0x2C,0x0,0x0,0x0,0x0,0xF,0x0,0xF,0x0,0x0,
0x4,0x58,0x90,0x49,0x19,0x6A,0x9D,0x98,0xD5,0x95,0xCE,0x19,0x17,0x16,0x70,0x8,
0x2,0x9C,0x43,0x11,0x4C,0x41,0x27,0x9C,0xB0,0x90,0xAE,0xDA,0xF1,0xC2,0x31,0xA8,
0x25,0x26,0x70,0xFB,0x27,0x82,0x2A,0x70,0xE8,0xFD,0x6E,0x4,0x43,0xE5,0x80,0x6B,
0x2,0x92,0x95,0x9E,0x33,0xA8,0xC,0xC,0xA6,0x27,0x85,0x70,0x65,0x3D,0x9,0xBE,
0xDF,0xA7,0x4E,0x33,0x18,0xFC,0x0,0xA,0x99,0x8A,0x55,0x26,0xB8,0xDD,0xB3,0x4C,
0xC5,0x40,0x37,0xC,0x33,0x2C,0xB,0x6D,0x12,0x1,0x0,0x3B
};
static readonly string program = @"using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LeMPIncludeFileExample
{
class Program
{
static void Main(string[] args)
{
}
}
}
";
}
}