cemu-DS4Windows/DS4Service/ProjectInstaller.cs

16 lines
320 B
C#
Raw Normal View History

using System;
using System.ComponentModel;
using System.Configuration.Install;
namespace DS4Service
{
[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
}