FileGenerator.Drawables.DrawablesGenerator.GenerateCore C# (CSharp) Method

GenerateCore() public static method

public static GenerateCore ( ) : void
return void
    public static void GenerateCore()
    {
      DrawablesGenerator generator = new DrawablesGenerator();
      generator._ForCore = true;
      generator.CreateWriter(PathHelper.GetFullPath(@"Source\Magick.NET\Core\Drawables\Generated\Drawables.cs"));
      Generate(generator);
    }
  }

Usage Example

Esempio n. 1
0
        public void GenerateDrawablesCore()
        {
            AppDomain.CurrentDomain.ReflectionOnlyAssemblyResolve += ResolveAssembly;

            DrawablesGenerator.GenerateCore();
        }