mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
20 lines
444 B
C#
20 lines
444 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 CloudStack.Plugin.AgentShell
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : System.Configuration.Install.Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|