This commit is contained in:
Joao Matos 2017-02-23 16:32:04 +00:00
Родитель 4fa8ccbf63
Коммит c49a04c7dd
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -115,7 +115,7 @@ namespace MonoEmbeddinator4000
throw new Exception("Support directory was not found");
}
void GenerateSupportFiles(ProjectOutput output)
void GenerateSupportFiles()
{
// Search for the location of support directory and bundle files with output.
try
@ -167,7 +167,7 @@ namespace MonoEmbeddinator4000
}
if (Options.GenerateSupportFiles)
GenerateSupportFiles(Output);
GenerateSupportFiles();
}
void WriteFiles()