I have a web application where I need to launch a console application or exe using ProcessStartInfo class like this -
var app = new ProcessStartInfo
{
FileName = @"C:\Projects\...\App.exe"
};
Process.Start(app);
My understanding is that this exe would use the default App.exe.config (Correct me if I am wrong!). I want the web application to use the settings available in web.config instead. Please advise.