Files
Watchdog/ProjectInstaller.cs
2024-02-23 07:01:14 -05:00

20 lines
383 B
C#

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();
}
}
}