Skip to content

Commit 3481260

Browse files
Merge pull request #5 from atc-net/feature/maintenance
Feature/maintenance
2 parents 9da96b3 + 6cceb40 commit 3481260

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/Atc.Installer.Wpf.App/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[assembly: AssemblyCompany("atc-net")]
66
[assembly: AssemblyProduct("Atc.Installer")]
77
[assembly: AssemblyTitle("Atc.Installer")]
8-
[assembly: AssemblyVersion("1.0.8.0")]
9-
[assembly: AssemblyInformationalVersion("1.0.8.0")]
10-
[assembly: AssemblyFileVersion("1.0.8.0")]
8+
[assembly: AssemblyVersion("1.0.9.0")]
9+
[assembly: AssemblyInformationalVersion("1.0.9.0")]
10+
[assembly: AssemblyFileVersion("1.0.9.0")]
1111
[assembly: System.Resources.NeutralResourcesLanguage("en")]
1212
[assembly: System.Runtime.Versioning.TargetPlatform("Windows7.0")]
1313
[assembly: System.Runtime.Versioning.SupportedOSPlatform("Windows7.0")]

src/Atc.Installer.Wpf.ComponentProvider.WindowsApplication/WindowsApplicationComponentProviderViewModel.cs

+1
Original file line numberDiff line numberDiff line change
@@ -710,6 +710,7 @@ private static async Task<bool> SetupInstalledMainFilePathAsService(
710710
{
711711
var (isSuccessful, output) = await ProcessHelper
712712
.Execute(
713+
installedMainFile.Directory!,
713714
new FileInfo(installedMainFile.FullName),
714715
"install",
715716
runAsAdministrator: true)

src/Atc.Installer.Wpf.ComponentProvider/ComponentProviderViewModel_LogicBase.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void LogAndSendToastNotificationMessage(
9191

9292
Messenger.Default.Send(
9393
new ToastNotificationMessage(
94-
ToastNotificationType.Information,
94+
toastNotificationType,
9595
title,
9696
message));
9797
}
@@ -503,7 +503,7 @@ protected void EnsureFirewallRules()
503503
}
504504
}
505505

506-
AddLogItem(LogLevel.Information, "firewall rules is ensured");
506+
AddLogItem(LogLevel.Information, "Firewall rules is ensured");
507507
}
508508

509509
protected string ResolveTemplateIfNeededByApplicationSettingsLookup(

0 commit comments

Comments
 (0)