Как вызвать dll, созданную из консольного приложения .net core, используя .NET Core API - PullRequest
0 голосов
/ 25 сентября 2019

Я пытаюсь запустить процесс, вызывая dll, созданную из консольного приложения .NET Core (2.1) из .NET Core API.Я попробовал это с помощью создания процесса.Ниже показан код.

            string filePath = @"C:\Projects\MyProject.Api\bin\Debug\netcoreapp2.1\"; 

            var startInfo = new ProcessStartInfo
            {
                FileName = "dotnet",
                WorkingDirectory = filePath,
                Arguments = "ReportGeneratorApp.dll",
                UseShellExecute = false,
                RedirectStandardOutput = false,
                RedirectStandardError = false,
                CreateNoWindow = true,
            };

            using (Process process = new Process())
            {
                process.StartInfo = startInfo;
                process.Start(); // process.WaitForExit();
            }

И в основном методе ReportGeneratorApp я пытаюсь создать файл в файловой системе.

    static void Main(string[] args)
    {
        Console.WriteLine("Hello World!");

        for (int i = 0; i < args.Length; i++)
        {
            Console.WriteLine(args[i]);
        }

        string path = @"D:\MyTest.txt";
        Console.ReadLine();
        try
        {

            // Delete the file if it exists.
            if (File.Exists(path))
            {
                File.Delete(path);
            }

            // Create the file.
            using (FileStream fs = File.Create(path))
            {
                byte[] info = new UTF8Encoding(true).GetBytes("This is some text in the file." + DateTime.Now.ToString("dd MMM yyyy HH:mm:ss"));
                // Add some information to the file.
                fs.Write(info, 0, info.Length);
            }

            // Open the stream and read it back.
            using (StreamReader sr = File.OpenText(path))
            {
                string s = "";
                while ((s = sr.ReadLine()) != null)
                {
                    Console.WriteLine(s);
                }
            }
        }

        catch (Exception ex)
        {
            Console.WriteLine(ex.ToString());
        }
    }
}

Если я запускаю ReportGeneratorApp из cmd, он работает.Но не тогда, когда я звоню из веб-API.Любые подсказки?

1 Ответ

0 голосов
/ 28 сентября 2019

Я действительно сделал глупую ошибку, добавив Console.ReadLine () в мою программу.Таким образом, он не будет работать с этого момента.Я должен был удалить это, чтобы работать.

Также я внес некоторые изменения в код, где я вызываю процесс для запуска.Мне нужно вызывать метод waitforexit (), пока я не получу ответ от программы.

var startInfo = new ProcessStartInfo
            {
                FileName = "dotnet",
                WorkingDirectory = fileDirectoryPath,
                Arguments = "ReportGeneratorApp.dll",
                RedirectStandardOutput = true
            };

            using (Process process = new Process())
            {
                process.StartInfo = startInfo;

                process.Start();
                process.WaitForExit();

                var output = await process.StandardOutput.ReadToEndAsync();
            }
...