Fix multiple applications

This commit is contained in:
2021-12-04 15:30:26 +01:00
parent 86bc48d647
commit c717adeba0

View File

@@ -117,9 +117,9 @@ namespace ExeLauncher.GUI
if (dialog.ShowDialog() == true)
{
var paths = string.Join("$", Applications.Select(app => app.Path));
var arguments = string.Join("$", Applications.Select(app => app.Arguments));
var workingDirectories = string.Join("$", Applications.Select(app => app.WorkingDirectory));
var paths = string.Join("§", Applications.Select(app => app.Path));
var arguments = string.Join("§", Applications.Select(app => app.Arguments));
var workingDirectories = string.Join("§", Applications.Select(app => app.WorkingDirectory));
var errors = _exeGenerator.CreateExecutable(dialog.FileName, paths, arguments, workingDirectories, ApplicationIconPath);