13 lines
211 B
C#
13 lines
211 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace VisualPascalABC
|
||
|
|
{
|
||
|
|
public class CompileOptionsSet
|
||
|
|
{
|
||
|
|
object OutputFileType ;
|
||
|
|
bool DebugInfoGen = true;
|
||
|
|
}
|
||
|
|
}
|