This commit is contained in:
2024-02-23 07:01:14 -05:00
commit 95cd353815
16 changed files with 1120 additions and 0 deletions

19
ProjectInstaller.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
using System.Threading.Tasks;
namespace Watchdog
{
[RunInstaller(true)]
public partial class ProjectInstaller:System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
}