git_bsmd/nsw/Source/bsmd.ExcelReadService/ProjectInstaller.cs

24 lines
517 B
C#

// Copyright (c) 2017 Informatikbüro Daniel Schick
//
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
using System.Threading.Tasks;
namespace bsmd.ExcelReadService
{
[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
}