0
Is there any way to publish an Aplication console with dependency on other consoles ?
Today I have a screen of Windowns Form that is my login screen, I select which console application should be running passing the physical location where the executable this, only if I publish Windows Form consoles are not published together.
My call from the executables.
var jsonParametros = Convert.ToBase64String(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(parametros)));
ProcessStartInfo info = new ProcessStartInfo(pathFile);
info.Arguments = string.Join(" ", funcional, senha, robo.IdRobo, robo.VersaoAssemble, funcionalFila, esteiras, racf);
info.Arguments = jsonParametros;
processo.StartInfo = info;
processo.Start();
You can generate a single executable with all other processes together ?
which installer you are using?
– Leandro Angelo
i Gero one through Visual Studio.
– Marco Souza
they are not inside the same Solution?
– Lucas Miranda
When you talk about generating a single executable with all processes together, do you mean creating an installer? If the question is just to "publish" all together and they are in the same Solution, an altertativa is to change the output path of the projects in the release profile, or create a profile of "deploy"
– Leandro Angelo
Yes, they are in the same Solution, it would be like a step by step build of how the deploy would be ?
– Marco Souza