changed process name; changed default installation path

This commit is contained in:
Marco Batzinger 2021-03-23 08:40:32 +01:00
parent f09f5a8daa
commit 0e6b3078c2
2 changed files with 2 additions and 3 deletions

View file

@ -121,7 +121,7 @@ namespace AmagnoVirtualPrinter.WixSharpInstaller
{
new Dir
(
@"%ProgramFiles%\MyPrinterDriver\",
@"%ProgramFiles%\AmagnoPrinterDriver\",
new DirFiles(feature, _filesDir + @"\*", s => !s.EndsWith(".exe")),
new File(new Id(SetupDriverId), feature, Path.Combine(_filesDir, Utils.Files.SETUP_DRIVER_EXE)),
new File(feature, Path.Combine(_filesDir, Utils.Files.DILIVERY_EXE)),

View file

@ -8,14 +8,13 @@ using System.Linq;
using AmagnoVirtualPrinter.Agent.Core.Interfaces;
using AmagnoVirtualPrinter.ProgressInfo.Lib.Interfaces;
using AmagnoVirtualPrinter.Utils;
using AmagnoVirtualPrinter.Agent.Core;
namespace AmagnoVirtualPrinter.ProgressInfo.Lib
{
[ExcludeFromCodeCoverage]
public class ProgressInfoProcessManager : IProgressInfoProcessManager
{
private const string ProcessName = "VPDAgentProgress";
private const string ProcessName = "AmagnoPrinterAgentProgress";
public bool IsRunning()
{