New additions.
This commit is contained in:
parent
47adf43407
commit
5115b49630
11 changed files with 4859 additions and 0 deletions
|
@ -0,0 +1,36 @@
|
|||
using Microsoft.Deployment.WindowsInstaller;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using WebsitePanel.Setup;
|
||||
|
||||
namespace WebsitePanel.WIXInstaller.Common
|
||||
{
|
||||
internal static class Tool
|
||||
{
|
||||
public static SetupVariables GetSetupVars(Session Ctx)
|
||||
{
|
||||
return new SetupVariables
|
||||
{
|
||||
SetupAction = SetupActions.Install,
|
||||
IISVersion = Global.IISVersion
|
||||
};
|
||||
}
|
||||
|
||||
public static void FillServerVariables(SetupVariables Vars)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static void FillEServerVariables(SetupVariables Vars)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static void FillPortalVariables(SetupVariables Vars)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue