14 lines
No EOL
297 B
C#
14 lines
No EOL
297 B
C#
using System.ComponentModel;
|
|
using System.Configuration.Install;
|
|
|
|
namespace AmagnoVirtualPrinter.Agent.Service
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |